Lines Matching refs:gfxinfo

64 struct gfxinfo {  struct
103 static struct gfxinfo *php_handle_gif (php_stream * stream) in php_handle_gif()
105 struct gfxinfo *result = NULL; in php_handle_gif()
114 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_gif()
126 static struct gfxinfo *php_handle_psd (php_stream * stream) in php_handle_psd()
128 struct gfxinfo *result = NULL; in php_handle_psd()
137 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_psd()
147 static struct gfxinfo *php_handle_bmp (php_stream * stream) in php_handle_bmp()
149 struct gfxinfo *result = NULL; in php_handle_bmp()
161 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
166 result = (struct gfxinfo *) ecalloc (1, sizeof(struct gfxinfo)); in php_handle_bmp()
198 static struct gfxinfo *php_handle_swc(php_stream * stream) in php_handle_swc()
200 struct gfxinfo *result = NULL; in php_handle_swc()
258 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swc()
276 static struct gfxinfo *php_handle_swf (php_stream * stream) in php_handle_swf()
278 struct gfxinfo *result = NULL; in php_handle_swf()
288 result = (struct gfxinfo *) ecalloc (1, sizeof (struct gfxinfo)); in php_handle_swf()
302 static struct gfxinfo *php_handle_png (php_stream * stream) in php_handle_png()
304 struct gfxinfo *result = NULL; in php_handle_png()
321 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_png()
468 static struct gfxinfo *php_handle_jpeg (php_stream * stream, zval *info) in php_handle_jpeg()
470 struct gfxinfo *result = NULL; in php_handle_jpeg()
493 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpeg()
597 static struct gfxinfo *php_handle_jpc(php_stream * stream) in php_handle_jpc()
599 struct gfxinfo *result = NULL; in php_handle_jpc()
620 result = (struct gfxinfo *)ecalloc(1, sizeof(struct gfxinfo)); in php_handle_jpc()
668 static struct gfxinfo *php_handle_jp2(php_stream *stream) in php_handle_jp2()
670 struct gfxinfo *result = NULL; in php_handle_jp2()
795 static struct gfxinfo *php_handle_tiff (php_stream * stream, zval *info, int motorola_intel) in php_handle_tiff()
797 struct gfxinfo *result = NULL; in php_handle_tiff()
863 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_tiff()
876 static struct gfxinfo *php_handle_iff(php_stream * stream) in php_handle_iff()
878 struct gfxinfo * result; in php_handle_iff()
912 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_iff()
937 static int php_get_wbmp(php_stream *stream, struct gfxinfo **result, int check) in php_get_wbmp()
999 static struct gfxinfo *php_handle_wbmp(php_stream * stream) in php_handle_wbmp()
1001 struct gfxinfo *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_wbmp()
1014 static int php_get_xbm(php_stream *stream, struct gfxinfo **result) in php_get_xbm()
1061 *result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_get_xbm()
1074 static struct gfxinfo *php_handle_xbm(php_stream * stream) in php_handle_xbm()
1076 struct gfxinfo *result; in php_handle_xbm()
1084 static struct gfxinfo *php_handle_ico(php_stream * stream) in php_handle_ico()
1086 struct gfxinfo *result = NULL; in php_handle_ico()
1098 result = (struct gfxinfo *) ecalloc(1, sizeof(struct gfxinfo)); in php_handle_ico()
1303 struct gfxinfo *result = NULL; in php_getimagesize_from_stream()