Home | History | Annotate | Download | only in makemandb

Lines Matching refs:outbuf

252 	unsigned char *outbuf;
258 outbuf = emalloc(nout);
259 compress(outbuf, (unsigned long *) &nout, inbuf, nin);
260 sqlite3_result_blob(pctx, outbuf, nout, free);
271 unsigned char *outbuf;
287 stream.next_out = outbuf = emalloc(stream.avail_out);
291 free(outbuf);
295 outbuf = erealloc(outbuf, total_out);
296 stream.next_out = outbuf + stream.total_out;
300 free(outbuf);
304 free(outbuf);
307 outbuf = erealloc(outbuf, stream.total_out);
308 sqlite3_result_text(pctx, (const char *)outbuf, stream.total_out, free);