Lines Matching refs:gfxinfo

59 struct gfxinfo {  struct
99 static struct gfxinfo *php_handle_gif (php_stream * stream) in php_handle_gif()
101 struct gfxinfo *result = NULL; in php_handle_gif()
110 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
121 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
123 struct gfxinfo *result = NULL; in php_handle_psd()
132 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
141 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
143 struct gfxinfo *result = NULL; in php_handle_bmp()
155 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
160 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
191 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
193 struct gfxinfo *result = NULL; in php_handle_swc()
255 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
272 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
274 struct gfxinfo *result = NULL; in php_handle_swf()
284 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
298 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
300 struct gfxinfo *result = NULL; in php_handle_png()
317 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
462 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) 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()
590 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
592 struct gfxinfo *result = NULL; in php_handle_jpc()
613 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
661 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
663 struct gfxinfo *result = NULL; in php_handle_jp2()
787 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel) in php_handle_tiff()
789 struct gfxinfo *result = NULL; in php_handle_tiff()
855 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
867 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
869 struct gfxinfo * result; in php_handle_iff()
903 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
928 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) in php_get_wbmp()
989 static struct gfxinfo *php_handle_wbmp(php_stream * stream) in php_handle_wbmp()
991 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1003 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1050 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1062 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1064 struct gfxinfo *result; in php_handle_xbm()
1071 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1073 struct gfxinfo *result = NULL; in php_handle_ico()
1085 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1112 static struct gfxinfo *php_handle_webp(php_stream * stream) in php_handle_webp()
1114 struct gfxinfo *result = NULL; in php_handle_webp()
1135 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_webp()
1376 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()