Home | History | Annotate | Download | only in makemandb

Lines Matching defs:total_out

273 	long total_out;
286 total_out = stream.avail_out = stream.avail_in * 2 + 100;
294 total_out <<= 1;
295 outbuf = erealloc(outbuf, total_out);
296 stream.next_out = outbuf + stream.total_out;
297 stream.avail_out = total_out - stream.total_out;
303 if (stream.total_out == 0) {
307 outbuf = erealloc(outbuf, stream.total_out);
308 sqlite3_result_text(pctx, (const char *)outbuf, stream.total_out, free);