Searched refs:gzhead (Results 1 – 2 of 2) sorted by relevance
283 s->gzhead = Z_NULL;405 strm->state->gzhead = head;590 if (s->gzhead == NULL) {603 put_byte(s, (s->gzhead->text ? 1 : 0) +604 (s->gzhead->hcrc ? 2 : 0) +605 (s->gzhead->extra == Z_NULL ? 0 : 4) +606 (s->gzhead->name == Z_NULL ? 0 : 8) +607 (s->gzhead->comment == Z_NULL ? 0 : 16)609 put_byte(s, (Byte)(s->gzhead->time & 0xff));610 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));[all …]
102 gz_headerp gzhead; /* gzip header information to write */ member