gzhead            277 tools/packfi2/deflate.c     s->gzhead = Z_NULL;
gzhead            399 tools/packfi2/deflate.c     strm->state->gzhead = head;
gzhead            584 tools/packfi2/deflate.c             if (s->gzhead == NULL) {
gzhead            597 tools/packfi2/deflate.c                 put_byte(s, (s->gzhead->text ? 1 : 0) +
gzhead            598 tools/packfi2/deflate.c                             (s->gzhead->hcrc ? 2 : 0) +
gzhead            599 tools/packfi2/deflate.c                             (s->gzhead->extra == Z_NULL ? 0 : 4) +
gzhead            600 tools/packfi2/deflate.c                             (s->gzhead->name == Z_NULL ? 0 : 8) +
gzhead            601 tools/packfi2/deflate.c                             (s->gzhead->comment == Z_NULL ? 0 : 16)
gzhead            603 tools/packfi2/deflate.c                 put_byte(s, (Byte)(s->gzhead->time & 0xff));
gzhead            604 tools/packfi2/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
gzhead            605 tools/packfi2/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 16) & 0xff));
gzhead            606 tools/packfi2/deflate.c                 put_byte(s, (Byte)((s->gzhead->time >> 24) & 0xff));
gzhead            610 tools/packfi2/deflate.c                 put_byte(s, s->gzhead->os & 0xff);
gzhead            611 tools/packfi2/deflate.c                 if (s->gzhead->extra != NULL) {
gzhead            612 tools/packfi2/deflate.c                     put_byte(s, s->gzhead->extra_len & 0xff);
gzhead            613 tools/packfi2/deflate.c                     put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
gzhead            615 tools/packfi2/deflate.c                 if (s->gzhead->hcrc)
gzhead            653 tools/packfi2/deflate.c         if (s->gzhead->extra != NULL) {
gzhead            656 tools/packfi2/deflate.c             while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
gzhead            658 tools/packfi2/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            666 tools/packfi2/deflate.c                 put_byte(s, s->gzhead->extra[s->gzindex]);
gzhead            669 tools/packfi2/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            672 tools/packfi2/deflate.c             if (s->gzindex == s->gzhead->extra_len) {
gzhead            681 tools/packfi2/deflate.c         if (s->gzhead->name != NULL) {
gzhead            687 tools/packfi2/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            697 tools/packfi2/deflate.c                 val = s->gzhead->name[s->gzindex++];
gzhead            700 tools/packfi2/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            712 tools/packfi2/deflate.c         if (s->gzhead->comment != NULL) {
gzhead            718 tools/packfi2/deflate.c                     if (s->gzhead->hcrc && s->pending > beg)
gzhead            728 tools/packfi2/deflate.c                 val = s->gzhead->comment[s->gzindex++];
gzhead            731 tools/packfi2/deflate.c             if (s->gzhead->hcrc && s->pending > beg)
gzhead            741 tools/packfi2/deflate.c         if (s->gzhead->hcrc) {
gzhead            102 tools/packfi2/deflate.h     gz_headerp  gzhead;  /* gzip header information to write */