Lines Matching refs:_getLong
1720 $offsetIFD0 = $this->_getLong($data, $pos + 4, $isBigEndian);
1763 $count = $this->_getLong($data, $base + $offset, $isBigEndian);
1773 $dataOffset = $this->_getLong($data, $base + $offset, $isBigEndian);
1804 $value = $this->_getLong($rawValue, 0, $isBigEndian);
1808 $value[$j] = $this->_getLong($rawValue, $j * 4, $isBigEndian);
1813 $a = $this->_getLong($rawValue, 0, $isBigEndian);
1814 $b = $this->_getLong($rawValue, 4, $isBigEndian);
1825 $a = $this->_getLong($rawValue, $j * 8, $isBigEndian);
1826 $b = $this->_getLong($rawValue, ($j * 8) + 4, $isBigEndian);
1859 $value = $this->_getLong($rawValue, 0, $isBigEndian);
1863 $value[$j] = $this->_getLong($rawValue, $j * 4, $isBigEndian);
1868 $a = $this->_getLong($rawValue, 0, $isBigEndian);
1869 $b = $this->_getLong($rawValue, 4, $isBigEndian);
1879 $a = $this->_getLong($rawValue, $j * 8, $isBigEndian);
1880 $b = $this->_getLong($rawValue, ($j * 8) + 4, $isBigEndian);
1954 $nextOffset = $this->_getLong($data, $base + $offset, $isBigEndian);
2465 $length = $this->_getLong($data, $pos);
2485 $aux = $this->_getLong($data, $pos);
2488 $this->_info['adobe']['ThumbnailWidth'] = $this->_getLong($data, $pos);
2490 $this->_info['adobe']['ThumbnailHeight'] = $this->_getLong($data, $pos);
3112 function _getLong(&$data, $pos, $bigEndian = true) { function in JpegMeta