Lines Matching defs:entries
2005 * @param array $entries
2011 function _writeIFD(&$data, $pos, $offsetBase, &$entries, $isBigEndian, $hasNext) {
2015 $entryCount = count($entries);
2021 $tag = $entries[$i]['tag'];
2022 $type = $entries[$i]['type'];
2030 $dataPos = $this->_writeIFD($data, $dataPos, $offsetBase, $entries[$i]['value'], $isBigEndian, false);
2037 $tiffData =& $entries[$i]['value'] ;
2041 $pos = $this->_putLong($data, $pos, $entries[$i]['count'], $isBigEndian);
2042 if (strlen($entries[$i]['value']) > 4) {
2044 $dataPos = $this->_putString($data, $dataPos, $entries[$i]['value']);
2046 $val = str_pad($entries[$i]['value'], 4, "\0");