Lines Matching refs:gfxinfo

59 struct gfxinfo {  struct
100 static struct gfxinfo *php_handle_gif (php_stream * stream) 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()
122 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
124 struct gfxinfo *result = NULL; in php_handle_psd()
133 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
142 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
144 struct gfxinfo *result = NULL; in php_handle_bmp()
156 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
161 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
192 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
194 struct gfxinfo *result = NULL; in php_handle_swc()
256 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
273 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
275 struct gfxinfo *result = NULL; in php_handle_swf()
285 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
299 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
301 struct gfxinfo *result = NULL; in php_handle_png()
318 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
477 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) in php_handle_jpeg()
479 struct gfxinfo *result = NULL; in php_handle_jpeg()
502 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
605 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
607 struct gfxinfo *result = NULL; in php_handle_jpc()
628 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
676 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
678 struct gfxinfo *result = NULL; in php_handle_jp2()
802 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel) in php_handle_tiff()
804 struct gfxinfo *result = NULL; in php_handle_tiff()
870 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
882 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
884 struct gfxinfo * result; in php_handle_iff()
918 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
943 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) in php_get_wbmp()
1004 static struct gfxinfo *php_handle_wbmp(php_stream * stream) in php_handle_wbmp()
1006 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1018 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1065 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1077 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1079 struct gfxinfo *result; in php_handle_xbm()
1086 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1088 struct gfxinfo *result = NULL; in php_handle_ico()
1100 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1127 static struct gfxinfo *php_handle_webp(php_stream * stream) in php_handle_webp()
1129 struct gfxinfo *result = NULL; in php_handle_webp()
1150 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_webp()
1176 static struct gfxinfo *php_handle_avif(php_stream * stream) { in php_handle_avif()
1177 return ecalloc(1, sizeof(struct gfxinfo)); in php_handle_avif()
1496 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()