Lines Matching refs:gfxinfo

60 struct gfxinfo {  struct
69 static struct gfxinfo *php_handle_gif (php_stream * stream) in php_handle_gif() argument
71 struct gfxinfo *result = NULL; in php_handle_gif()
80 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
91 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
93 struct gfxinfo *result = NULL; in php_handle_psd()
102 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
111 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
113 struct gfxinfo *result = NULL; in php_handle_bmp()
125 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
130 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
161 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
163 struct gfxinfo *result = NULL; in php_handle_swc()
225 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
242 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
244 struct gfxinfo *result = NULL; in php_handle_swf()
254 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
268 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
270 struct gfxinfo *result = NULL; in php_handle_png()
287 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
446 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) in php_handle_jpeg()
448 struct gfxinfo *result = NULL; in php_handle_jpeg()
471 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
574 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
576 struct gfxinfo *result = NULL; in php_handle_jpc()
597 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
645 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
647 struct gfxinfo *result = NULL; in php_handle_jp2()
771 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel) in php_handle_tiff()
773 struct gfxinfo *result = NULL; in php_handle_tiff()
839 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
851 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
853 struct gfxinfo * result; in php_handle_iff()
887 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
912 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) in php_get_wbmp()
973 static struct gfxinfo *php_handle_wbmp(php_stream * stream) in php_handle_wbmp()
975 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
987 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1034 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1046 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1048 struct gfxinfo *result; in php_handle_xbm()
1055 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1057 struct gfxinfo *result = NULL; in php_handle_ico()
1069 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1096 static struct gfxinfo *php_handle_webp(php_stream * stream) in php_handle_webp()
1098 struct gfxinfo *result = NULL; in php_handle_webp()
1119 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_webp()
1181 static struct gfxinfo *php_handle_avif(php_stream * stream) { in php_handle_avif()
1182 struct gfxinfo* result = NULL; in php_handle_avif()
1188 result = (struct gfxinfo*)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_avif()
1446 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()