Lines Matching refs:_putLong

1991         $pos = $this->_putLong($data, $pos, 0x00000008, $isBigEndian); // IFD0 Offset is always 8
2030 $pos = $this->_putLong($data, $pos, 0x01, $isBigEndian); // Count = 1
2031 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2037 $pos = $this->_putLong($data, $pos, 0x01, $isBigEndian); // Count = 1
2039 $pos = $this->_putLong($data, $pos, 0x00, $isBigEndian); // For Now
2044 $pos = $this->_putLong($data, $pos, $entries[$i]['count'], $isBigEndian);
2046 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2056 $this->_putLong($data, $tiffDataOffsetPos, $dataPos - $offsetBase, $isBigEndian);
2061 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2063 $pos = $this->_putLong($data, $pos, 0, $isBigEndian);
2208 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2213 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2234 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2235 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2240 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2241 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2297 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2302 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2324 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2325 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2330 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2331 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2626 $pos = $this->_putLong($data, $pos, $len);
3141 function _putLong(&$data, $pos, $val, $bigEndian = true) { function in JpegMeta