Home
last modified time | relevance | path

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

/external/syslinux/com32/lib/zlib/
Ddeflate.c271 s->gzhead = Z_NULL;
395 strm->state->gzhead = head;
513 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
514 if (s->gzhead->extra != Z_NULL)
515 wraplen += 2 + s->gzhead->extra_len;
516 str = s->gzhead->name;
521 str = s->gzhead->comment;
526 if (s->gzhead->hcrc)
614 if (s->gzhead == Z_NULL) {
627 put_byte(s, (s->gzhead->text ? 1 : 0) +
[all …]
Ddeflate.h102 gz_headerp gzhead; /* gzip header information to write */ member
/external/python/cpython2/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
/external/zlib/src/
Ddeflate.c311 s->gzhead = Z_NULL;
523 strm->state->gzhead = head;
679 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
681 if (s->gzhead->extra != Z_NULL)
682 wraplen += 2 + s->gzhead->extra_len;
683 str = s->gzhead->name;
688 str = s->gzhead->comment;
693 if (s->gzhead->hcrc)
757 if (s->gzhead->hcrc && s->pending > (beg)) \
855 if (s->gzhead == Z_NULL) {
[all …]
Ddeflate.h108 gz_headerp gzhead; /* gzip header information to write */ member
/external/python/cpython3/Modules/zlib/
Ddeflate.c311 s->gzhead = Z_NULL;
523 strm->state->gzhead = head;
679 if (s->gzhead != Z_NULL) { /* user-supplied gzip header */
681 if (s->gzhead->extra != Z_NULL)
682 wraplen += 2 + s->gzhead->extra_len;
683 str = s->gzhead->name;
688 str = s->gzhead->comment;
693 if (s->gzhead->hcrc)
757 if (s->gzhead->hcrc && s->pending > (beg)) \
855 if (s->gzhead == Z_NULL) {
[all …]
Ddeflate.h108 gz_headerp gzhead; /* gzip header information to write */ member
/external/zlib/src/examples/
Dgzjoin.c204 local void gzhead(bin *in) in gzhead() function
295 gzhead(in); in gzcopy()