Lines Matching refs:out
68 void gd_putout (int i, void *out) in gd_putout() argument
70 gdPutC(i, (gdIOCtx *) out); in gd_putout()
94 void gdImageWBMPCtx (gdImagePtr image, int fg, gdIOCtx * out) in gdImageWBMPCtx() argument
116 if (writewbmp (wbmp, &gd_putout, out)) { in gdImageWBMPCtx()
193 gdIOCtx *out = gdNewFileCtx(outFile); in gdImageWBMP() local
194 gdImageWBMPCtx(im, fg, out); in gdImageWBMP()
195 out->gd_free(out); in gdImageWBMP()
204 gdIOCtx *out = gdNewDynamicCtx(2048, NULL); in gdImageWBMPPtr() local
205 gdImageWBMPCtx(im, fg, out); in gdImageWBMPPtr()
206 rv = gdDPExtractData(out, size); in gdImageWBMPPtr()
207 out->gd_free(out); in gdImageWBMPPtr()