Lines Matching refs:gfxinfo

61 struct gfxinfo {  struct
100 static struct gfxinfo *php_handle_gif (php_stream * stream TSRMLS_DC) in php_handle_gif()
102 struct gfxinfo *result = NULL; in php_handle_gif()
111 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
123 static struct gfxinfo *php_handle_psd (php_stream * stream TSRMLS_DC) in php_handle_psd()
125 struct gfxinfo *result = NULL; in php_handle_psd()
134 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
144 static struct gfxinfo *php_handle_bmp (php_stream * stream TSRMLS_DC) in php_handle_bmp()
146 struct gfxinfo *result = NULL; in php_handle_bmp()
158 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
163 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
194 static struct gfxinfo *php_handle_swc(php_stream * stream TSRMLS_DC) in php_handle_swc()
196 struct gfxinfo *result = NULL; in php_handle_swc()
248 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
266 static struct gfxinfo *php_handle_swf (php_stream * stream TSRMLS_DC) in php_handle_swf()
268 struct gfxinfo *result = NULL; in php_handle_swf()
278 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
292 static struct gfxinfo *php_handle_png (php_stream * stream TSRMLS_DC) in php_handle_png()
294 struct gfxinfo *result = NULL; in php_handle_png()
311 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
470 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info TSRMLS_DC) in php_handle_jpeg()
472 struct gfxinfo *result = NULL; in php_handle_jpeg()
495 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
599 static struct gfxinfo *php_handle_jpc(php_stream * stream TSRMLS_DC) in php_handle_jpc()
601 struct gfxinfo *result = NULL; in php_handle_jpc()
623 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
671 static struct gfxinfo *php_handle_jp2(php_stream *stream TSRMLS_DC) in php_handle_jp2()
673 struct gfxinfo *result = NULL; in php_handle_jp2()
798 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel TSRMLS_… in php_handle_tiff()
800 struct gfxinfo *result = NULL; in php_handle_tiff()
866 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
879 static struct gfxinfo *php_handle_iff(php_stream * stream TSRMLS_DC) in php_handle_iff()
881 struct gfxinfo * result; in php_handle_iff()
915 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
940 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check TSRMLS_DC) in php_get_wbmp()
995 static struct gfxinfo *php_handle_wbmp(php_stream * stream TSRMLS_DC) in php_handle_wbmp()
997 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1010 static int php_get_xbm(php_stream *stream, struct gfxinfo **result TSRMLS_DC) in php_get_xbm()
1057 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1070 static struct gfxinfo *php_handle_xbm(php_stream * stream TSRMLS_DC) in php_handle_xbm()
1072 struct gfxinfo *result; in php_handle_xbm()
1080 static struct gfxinfo *php_handle_ico(php_stream * stream TSRMLS_DC) in php_handle_ico()
1082 struct gfxinfo *result = NULL; in php_handle_ico()
1094 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1299 struct gfxinfo *result = NULL; in PHP_FUNCTION()