Lines Matching refs:gfxinfo

66 struct gfxinfo {  struct
106 static struct gfxinfo *php_handle_gif (php_stream * stream) in php_handle_gif()
108 struct gfxinfo *result = NULL; in php_handle_gif()
117 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
129 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
131 struct gfxinfo *result = NULL; in php_handle_psd()
140 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
150 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
152 struct gfxinfo *result = NULL; in php_handle_bmp()
164 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
169 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
201 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
203 struct gfxinfo *result = NULL; in php_handle_swc()
265 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
283 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
285 struct gfxinfo *result = NULL; in php_handle_swf()
295 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
309 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
311 struct gfxinfo *result = NULL; in php_handle_png()
328 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
475 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) in php_handle_jpeg()
477 struct gfxinfo *result = NULL; in php_handle_jpeg()
500 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
604 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
606 struct gfxinfo *result = NULL; in php_handle_jpc()
627 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
675 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
677 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()
883 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
885 struct gfxinfo * result; in php_handle_iff()
919 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
944 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) in php_get_wbmp()
1006 static struct gfxinfo *php_handle_wbmp(php_stream * stream) in php_handle_wbmp()
1008 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1021 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1068 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1081 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1083 struct gfxinfo *result; in php_handle_xbm()
1091 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1093 struct gfxinfo *result = NULL; in php_handle_ico()
1105 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()
1373 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()