Lines Matching refs:out
69 void gd_putout (int i, void *out) in gd_putout() argument
71 gdPutC(i, (gdIOCtx *) out); in gd_putout()
95 void gdImageWBMPCtx (gdImagePtr image, int fg, gdIOCtx * out) in gdImageWBMPCtx() argument
118 if (writewbmp (wbmp, &gd_putout, out)) { in gdImageWBMPCtx()
195 gdIOCtx *out = gdNewFileCtx(outFile); in gdImageWBMP() local
196 gdImageWBMPCtx(im, fg, out); in gdImageWBMP()
197 out->gd_free(out); in gdImageWBMP()
206 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); in gdImageWBMPPtr() local
207 gdImageWBMPCtx(im, fg, out); in gdImageWBMPPtr()
208 rv = gdDPExtractData(out, size); in gdImageWBMPPtr()
209 out->gd_free(out); in gdImageWBMPPtr()