Lines Matching refs:outd
119 struct outd { struct
134 struct outd *me = (struct outd *)out_desc; in out() argument
218 struct outd outd; /* output structure */ in lunpipe() local
222 outd.outfile = outfile; in lunpipe()
223 outd.check = 0; in lunpipe()
281 if (outcnt && out(&outd, outbuf, outcnt)) { in lunpipe()
353 if (out(&outd, outbuf, outcnt)) { in lunpipe()
389 struct outd outd; in gunpipe() local
467 outd.outfile = outfile; in gunpipe()
468 outd.check = 1; in gunpipe()
469 outd.crc = crc32(0L, Z_NULL, 0); in gunpipe()
470 outd.total = 0; in gunpipe()
475 ret = inflateBack(strm, in, indp, out, &outd); in gunpipe()
483 if (NEXT() != (int)(outd.crc & 0xff) || in gunpipe()
484 NEXT() != (int)((outd.crc >> 8) & 0xff) || in gunpipe()
485 NEXT() != (int)((outd.crc >> 16) & 0xff) || in gunpipe()
486 NEXT() != (int)((outd.crc >> 24) & 0xff)) { in gunpipe()
494 if (NEXT() != (int)(outd.total & 0xff) || in gunpipe()
495 NEXT() != (int)((outd.total >> 8) & 0xff) || in gunpipe()
496 NEXT() != (int)((outd.total >> 16) & 0xff) || in gunpipe()
497 NEXT() != (int)((outd.total >> 24) & 0xff)) { in gunpipe()