Home | History | Annotate | Download | only in examples

Lines Matching refs:outd

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