Lines Matching refs:out
69 void gd_putout (int i, void *out) in gd_putout() argument
71 gdPutC(i, (gdIOCtx *) out); in gd_putout()
85 static int _gdImageWBMPCtx(gdImagePtr image, int fg, gdIOCtx *out);
96 void gdImageWBMPCtx (gdImagePtr image, int fg, gdIOCtx * out) in gdImageWBMPCtx() argument
98 _gdImageWBMPCtx(image, fg, out); in gdImageWBMPCtx()
102 static int _gdImageWBMPCtx(gdImagePtr image, int fg, gdIOCtx *out) in _gdImageWBMPCtx() argument
125 if (writewbmp (wbmp, &gd_putout, out)) { in _gdImageWBMPCtx()
207 gdIOCtx *out = gdNewFileCtx(outFile); in gdImageWBMP() local
208 gdImageWBMPCtx(im, fg, out); in gdImageWBMP()
209 out->gd_free(out); in gdImageWBMP()
218 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); in gdImageWBMPPtr() local
219 if (!_gdImageWBMPCtx(im, fg, out)) { in gdImageWBMPPtr()
220 rv = gdDPExtractData(out, size); in gdImageWBMPPtr()
224 out->gd_free(out); in gdImageWBMPPtr()