Lines Matching refs:offset
1739 * @param integer $offset
1745 function _readIFD($data, $base, $offset, $isBigEndian, $mode) { argument
1748 $numEntries = $this->_getShort($data, $base + $offset, $isBigEndian);
1749 $offset += 2;
1757 $tag = $this->_getShort($data, $base + $offset, $isBigEndian);
1758 $offset += 2;
1759 $type = $this->_getShort($data, $base + $offset, $isBigEndian);
1760 $offset += 2;
1761 $count = $this->_getLong($data, $base + $offset, $isBigEndian);
1762 $offset += 4;
1771 $dataOffset = $this->_getLong($data, $base + $offset, $isBigEndian);
1774 $rawValue = $this->_getFixedString($data, $base + $offset, $dataLength);
1776 $offset += 4;
1952 $nextOffset = $this->_getLong($data, $base + $offset, $isBigEndian);