outd              130 lib/zlib/examples/gun.c     struct outd *me = (struct outd *)out_desc;
outd              214 lib/zlib/examples/gun.c     struct outd outd;           /* output structure */
outd              217 lib/zlib/examples/gun.c     outd.outfile = outfile;
outd              218 lib/zlib/examples/gun.c     outd.check = 0;
outd              276 lib/zlib/examples/gun.c             if (outcnt && out(&outd, outbuf, outcnt)) {
outd              346 lib/zlib/examples/gun.c             if (out(&outd, outbuf, outcnt)) {
outd              380 lib/zlib/examples/gun.c     struct outd outd;
outd              458 lib/zlib/examples/gun.c         outd.outfile = outfile;
outd              459 lib/zlib/examples/gun.c         outd.check = 1;
outd              460 lib/zlib/examples/gun.c         outd.crc = crc32(0L, Z_NULL, 0);
outd              461 lib/zlib/examples/gun.c         outd.total = 0;
outd              466 lib/zlib/examples/gun.c         ret = inflateBack(strm, in, indp, out, &outd);
outd              474 lib/zlib/examples/gun.c         if (NEXT() != (outd.crc & 0xff) ||
outd              475 lib/zlib/examples/gun.c             NEXT() != ((outd.crc >> 8) & 0xff) ||
outd              476 lib/zlib/examples/gun.c             NEXT() != ((outd.crc >> 16) & 0xff) ||
outd              477 lib/zlib/examples/gun.c             NEXT() != ((outd.crc >> 24) & 0xff)) {
outd              485 lib/zlib/examples/gun.c         if (NEXT() != (outd.total & 0xff) ||
outd              486 lib/zlib/examples/gun.c             NEXT() != ((outd.total >> 8) & 0xff) ||
outd              487 lib/zlib/examples/gun.c             NEXT() != ((outd.total >> 16) & 0xff) ||
outd              488 lib/zlib/examples/gun.c             NEXT() != ((outd.total >> 24) & 0xff)) {