gzhead            274 lib/zlib/deflate.c     s->gzhead = Z_NULL;
gzhead            396 lib/zlib/deflate.c     strm->state->gzhead = head;
gzhead            581 lib/zlib/deflate.c             if (s->gzhead == NULL) {
gzhead            594 lib/zlib/deflate.c                 put_byte(s, (s->gzhead->text ? 1 : 0) +
gzhead            595 lib/zlib/deflate.c                             (s->gzhead->hcrc ? 2 : 0) +
gzhead            596 lib/zlib/deflate.c                             (s->gzhead->extra == Z_NULL ? 0 : 4) +
gzhead            597 lib/zlib/deflate.c                             (s->gzhead->name == Z_NULL ? 0 : 8) +
gzhead            598 lib/zlib/deflate.c                             (s->gzhead->comment == Z_NULL ? 0 : 16)
gzhead            600 lib/zlib/deflate.c                 put_byte(s, (Byte)(s->gzhead->time & 0xff));
gzhead            601 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
gzhead            602 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
gzhead            603 lib/zlib/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
gzhead            607 lib/zlib/deflate.c                 put_byte(s, s->gzhead->os & 0xff);
gzhead            608 lib/zlib/deflate.c                 if (s->gzhead->extra != NULL) {
gzhead            609 lib/zlib/deflate.c                     put_byte(s, s->gzhead->extra_len & 0xff);
gzhead            610 lib/zlib/deflate.c                     put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
gzhead            612 lib/zlib/deflate.c                 if (s->gzhead->hcrc)
gzhead            650 lib/zlib/deflate.c         if (s->gzhead->extra != NULL) {
gzhead            653 lib/zlib/deflate.c             while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
gzhead            655 lib/zlib/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            663 lib/zlib/deflate.c                 put_byte(s, s->gzhead->extra[s->gzindex]);
gzhead            666 lib/zlib/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            669 lib/zlib/deflate.c             if (s->gzindex == s->gzhead->extra_len) {
gzhead            678 lib/zlib/deflate.c         if (s->gzhead->name != NULL) {
gzhead            684 lib/zlib/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            694 lib/zlib/deflate.c                 val = s->gzhead->name[s->gzindex++];
gzhead            697 lib/zlib/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            709 lib/zlib/deflate.c         if (s->gzhead->comment != NULL) {
gzhead            715 lib/zlib/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            725 lib/zlib/deflate.c                 val = s->gzhead->comment[s->gzindex++];
gzhead            728 lib/zlib/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            738 lib/zlib/deflate.c         if (s->gzhead->hcrc) {
gzhead            102 lib/zlib/deflate.h     gz_headerp  gzhead;  /* gzip header information to write */
gzhead            294 lib/zlib/examples/gzjoin.c     gzhead(in);