Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Ddeflate.c283 s->gzhead = Z_NULL;
445 strm->state->gzhead = head;
593 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
594 if (s->gzhead->extra != Z_NULL)
595 wraplen += 2 + s->gzhead->extra_len;
596 str = s->gzhead->name;
601 str = s->gzhead->comment;
606 if (s->gzhead->hcrc)
697 if (s->gzhead == Z_NULL) {
710 put_byte(s, (s->gzhead->text ? 1 : 0) +
[all …]
Ddeflate.h105 gz_headerp gzhead; /* gzip header information to write */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Ddeflate.c277 s->gzhead = Z_NULL;
399 strm->state->gzhead = head;
584 if (s->gzhead == NULL) {
597 put_byte(s, (s->gzhead->text ? 1 : 0) +
598 (s->gzhead->hcrc ? 2 : 0) +
599 (s->gzhead->extra == Z_NULL ? 0 : 4) +
600 (s->gzhead->name == Z_NULL ? 0 : 8) +
601 (s->gzhead->comment == Z_NULL ? 0 : 16)
603 put_byte(s, (Byte)(s->gzhead->time & 0xff));
604 put_byte(s, (Byte)((s->gzhead->time >> 8) & 0xff));
[all …]
Ddeflate.h102 gz_headerp gzhead; /* gzip header information to write */ member