Lines Matching refs:gfxinfo

64 struct gfxinfo {  struct
104 static struct gfxinfo *php_handle_gif (php_stream * stream) in php_handle_gif()
106 struct gfxinfo *result = NULL; in php_handle_gif()
115 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
127 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
129 struct gfxinfo *result = NULL; in php_handle_psd()
138 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
148 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
150 struct gfxinfo *result = NULL; in php_handle_bmp()
162 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
167 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
199 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
201 struct gfxinfo *result = NULL; in php_handle_swc()
263 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
281 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
283 struct gfxinfo *result = NULL; in php_handle_swf()
293 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
307 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
309 struct gfxinfo *result = NULL; in php_handle_png()
326 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
473 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) in php_handle_jpeg()
475 struct gfxinfo *result = NULL; in php_handle_jpeg()
498 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
602 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
604 struct gfxinfo *result = NULL; in php_handle_jpc()
625 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
673 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
675 struct gfxinfo *result = NULL; in php_handle_jp2()
800 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel) in php_handle_tiff()
802 struct gfxinfo *result = NULL; in php_handle_tiff()
868 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
881 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
883 struct gfxinfo * result; in php_handle_iff()
917 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
942 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()
1019 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1066 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1079 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1081 struct gfxinfo *result; in php_handle_xbm()
1089 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1091 struct gfxinfo *result = NULL; in php_handle_ico()
1103 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1131 static struct gfxinfo *php_handle_webp(php_stream * stream) in php_handle_webp()
1133 struct gfxinfo *result = NULL; in php_handle_webp()
1154 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_webp()
1397 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()