Lines Matching refs:gfxinfo
64 struct gfxinfo { struct
103 static struct gfxinfo *php_handle_gif (php_stream * stream TSRMLS_DC) in php_handle_gif()
105 struct gfxinfo *result = NULL; in php_handle_gif()
114 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
126 static struct gfxinfo *php_handle_psd (php_stream * stream TSRMLS_DC) in php_handle_psd()
128 struct gfxinfo *result = NULL; in php_handle_psd()
137 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
147 static struct gfxinfo *php_handle_bmp (php_stream * stream TSRMLS_DC) in php_handle_bmp()
149 struct gfxinfo *result = NULL; in php_handle_bmp()
161 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
166 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
198 static struct gfxinfo *php_handle_swc(php_stream * stream TSRMLS_DC) in php_handle_swc()
200 struct gfxinfo *result = NULL; in php_handle_swc()
252 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
270 static struct gfxinfo *php_handle_swf (php_stream * stream TSRMLS_DC) in php_handle_swf()
272 struct gfxinfo *result = NULL; in php_handle_swf()
282 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
296 static struct gfxinfo *php_handle_png (php_stream * stream TSRMLS_DC) in php_handle_png()
298 struct gfxinfo *result = NULL; in php_handle_png()
315 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
462 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info TSRMLS_DC) in php_handle_jpeg()
464 struct gfxinfo *result = NULL; in php_handle_jpeg()
487 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
591 static struct gfxinfo *php_handle_jpc(php_stream * stream TSRMLS_DC) in php_handle_jpc()
593 struct gfxinfo *result = NULL; in php_handle_jpc()
615 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
663 static struct gfxinfo *php_handle_jp2(php_stream *stream TSRMLS_DC) in php_handle_jp2()
665 struct gfxinfo *result = NULL; in php_handle_jp2()
790 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel TSRMLS_… in php_handle_tiff()
792 struct gfxinfo *result = NULL; in php_handle_tiff()
858 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
871 static struct gfxinfo *php_handle_iff(php_stream * stream TSRMLS_DC) in php_handle_iff()
873 struct gfxinfo * result; in php_handle_iff()
907 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
932 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check TSRMLS_DC) in php_get_wbmp()
994 static struct gfxinfo *php_handle_wbmp(php_stream * stream TSRMLS_DC) in php_handle_wbmp()
996 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1009 static int php_get_xbm(php_stream *stream, struct gfxinfo **result TSRMLS_DC) in php_get_xbm()
1056 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1069 static struct gfxinfo *php_handle_xbm(php_stream * stream TSRMLS_DC) in php_handle_xbm()
1071 struct gfxinfo *result; in php_handle_xbm()
1079 static struct gfxinfo *php_handle_ico(php_stream * stream TSRMLS_DC) in php_handle_ico()
1081 struct gfxinfo *result = NULL; in php_handle_ico()
1093 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1299 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()