Searched refs:extra_len (Results 1 - 3 of 3) sorted by relevance

/barrelfish-master/include/
H A Dzlib.h115 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ member in struct:gz_header_s
679 a zero byte, and that if extra is not Z_NULL, that extra_len bytes are
832 extra_len contains the actual extra field length, and extra contains the
833 extra field, or that field truncated if extra_max is less than extra_len.
/barrelfish-master/lib/zlib/
H A Ddeflate.c612 put_byte(s, s->gzhead->extra_len & 0xff);
613 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
656 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
672 if (s->gzindex == s->gzhead->extra_len) {
H A Dinflate.c673 state->head->extra_len = (unsigned)hold;
687 len = state->head->extra_len - state->length;

Completed in 43 milliseconds