Lines Matching refs:poi
196 unsigned char *poi = NULL; in PHP_FUNCTION() local
222 poi = (unsigned char*)ZSTR_VAL(spoolbuf); in PHP_FUNCTION()
223 memset(poi, 0, iptcdata_len + sizeof(psheader) + sb.st_size + 1024 + 1); in PHP_FUNCTION()
226 if (php_iptc_get1(fp, spool, poi?&poi:0) != 0xFF) { in PHP_FUNCTION()
234 if (php_iptc_get1(fp, spool, poi?&poi:0) != 0xD8) { in PHP_FUNCTION()
243 marker = php_iptc_next_marker(fp, spool, poi?&poi:0); in PHP_FUNCTION()
248 php_iptc_put1(fp, spool, (unsigned char)marker, poi?&poi:0); in PHP_FUNCTION()
256 php_iptc_read_remaining(fp, spool, poi?&poi:0); in PHP_FUNCTION()
269 php_iptc_skip_variable(fp, spool, poi?&poi:0); in PHP_FUNCTION()
279 php_iptc_put1(fp, spool, psheader[inx], poi?&poi:0); in PHP_FUNCTION()
282 php_iptc_put1(fp, spool, (unsigned char)(iptcdata_len>>8), poi?&poi:0); in PHP_FUNCTION()
283 php_iptc_put1(fp, spool, (unsigned char)(iptcdata_len&0xff), poi?&poi:0); in PHP_FUNCTION()
286 php_iptc_put1(fp, spool, iptcdata[inx], poi?&poi:0); in PHP_FUNCTION()
292 php_iptc_read_remaining(fp, spool, poi?&poi:0); in PHP_FUNCTION()
297 php_iptc_skip_variable(fp, spool, poi?&poi:0); in PHP_FUNCTION()
305 spoolbuf = zend_string_truncate(spoolbuf, poi - (unsigned char*)ZSTR_VAL(spoolbuf), 0); in PHP_FUNCTION()