Home
last modified time | relevance | path

Searched refs:gzhead (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/uts/common/zmod/
H A Ddeflate.c283 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 …]
H A Ddeflate.h102 gz_headerp gzhead; /* gzip header information to write */ member