Lines Matching refs:_putLong

1988         $pos = $this->_putLong($data, $pos, 0x00000008, $isBigEndian); // IFD0 Offset is always 8
2027 $pos = $this->_putLong($data, $pos, 0x01, $isBigEndian); // Count = 1
2028 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2034 $pos = $this->_putLong($data, $pos, 0x01, $isBigEndian); // Count = 1
2036 $pos = $this->_putLong($data, $pos, 0x00, $isBigEndian); // For Now
2041 $pos = $this->_putLong($data, $pos, $entries[$i]['count'], $isBigEndian);
2043 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2053 $this->_putLong($data, $tiffDataOffsetPos, $dataPos - $offsetBase, $isBigEndian);
2058 $pos = $this->_putLong($data, $pos, $dataPos - $offsetBase, $isBigEndian);
2060 $pos = $this->_putLong($data, $pos, 0, $isBigEndian);
2205 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2210 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2231 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2232 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2237 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2238 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2294 $this->_putLong($value, $j * 4, $origValue[$j], $isBigEndian);
2299 $this->_putLong($value, $j * 4, 0, $isBigEndian);
2321 $this->_putLong($value, $j * 8, $a, $isBigEndian);
2322 $this->_putLong($value, ($j * 8) + 4, $b, $isBigEndian);
2327 $this->_putLong($value, $j * 8, 0, $isBigEndian);
2328 $this->_putLong($value, ($j * 8) + 4, 0, $isBigEndian);
2622 $pos = $this->_putLong($data, $pos, $len);
3137 function _putLong(&$data, $pos, $val, $bigEndian = true) {