Lines Matching refs:spool

87 static int php_iptc_put1(FILE *fp, int spool, unsigned char c, unsigned char **spoolbuf)  in php_iptc_put1()  argument
89 if (spool > 0) in php_iptc_put1()
100 static int php_iptc_get1(FILE *fp, int spool, unsigned char **spoolbuf) in php_iptc_get1() argument
109 if (spool > 0) { in php_iptc_get1()
122 static int php_iptc_read_remaining(FILE *fp, int spool, unsigned char **spoolbuf) in php_iptc_read_remaining() argument
124 while (php_iptc_get1(fp, spool, spoolbuf) != EOF) continue; in php_iptc_read_remaining()
132 static int php_iptc_skip_variable(FILE *fp, int spool, unsigned char **spoolbuf) in php_iptc_skip_variable() argument
137 if ((c1 = php_iptc_get1(fp, spool, spoolbuf)) == EOF) return M_EOI; in php_iptc_skip_variable()
139 if ((c2 = php_iptc_get1(fp, spool, spoolbuf)) == EOF) return M_EOI; in php_iptc_skip_variable()
146 if (php_iptc_get1(fp, spool, spoolbuf) == EOF) return M_EOI; in php_iptc_skip_variable()
154 static int php_iptc_next_marker(FILE *fp, int spool, unsigned char **spoolbuf) in php_iptc_next_marker() argument
160 c = php_iptc_get1(fp, spool, spoolbuf); in php_iptc_next_marker()
165 if ((c = php_iptc_get1(fp, spool, spoolbuf)) == EOF) in php_iptc_next_marker()
176 php_iptc_put1(fp, spool, (unsigned char)c, spoolbuf); in php_iptc_next_marker()
191 zend_long spool = 0; in PHP_FUNCTION() local
204 Z_PARAM_LONG(spool) in PHP_FUNCTION()
221 if (spool < 2) { in PHP_FUNCTION()
229 if (php_iptc_get1(fp, spool, poi?&poi:0) != 0xFF) { in PHP_FUNCTION()
237 if (php_iptc_get1(fp, spool, poi?&poi:0) != 0xD8) { in PHP_FUNCTION()
246 marker = php_iptc_next_marker(fp, spool, poi?&poi:0); in PHP_FUNCTION()
251 php_iptc_put1(fp, spool, (unsigned char)marker, poi?&poi:0); in PHP_FUNCTION()
259 php_iptc_read_remaining(fp, spool, poi?&poi:0); in PHP_FUNCTION()
272 php_iptc_skip_variable(fp, spool, poi?&poi:0); in PHP_FUNCTION()
282 php_iptc_put1(fp, spool, psheader[inx], poi?&poi:0); in PHP_FUNCTION()
285 php_iptc_put1(fp, spool, (unsigned char)(iptcdata_len>>8), poi?&poi:0); in PHP_FUNCTION()
286 php_iptc_put1(fp, spool, (unsigned char)(iptcdata_len&0xff), poi?&poi:0); in PHP_FUNCTION()
289 php_iptc_put1(fp, spool, iptcdata[inx], poi?&poi:0); in PHP_FUNCTION()
295 php_iptc_read_remaining(fp, spool, poi?&poi:0); in PHP_FUNCTION()
300 php_iptc_skip_variable(fp, spool, poi?&poi:0); in PHP_FUNCTION()
307 if (spool < 2) { in PHP_FUNCTION()