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

/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp517 int extra_len = gz_extra_len[0] & 0xFF; local
518 extra_len += (gz_extra_len[1] & 0xFF) << 8;
519 for (; extra_len > 0; extra_len--) {
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzlib.h139 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ member in struct:gz_header_s
703 a zero byte, and that if extra is not Z_NULL, that extra_len bytes are
856 extra_len contains the actual extra field length, and extra contains the
857 extra field, or that field truncated if extra_max is less than extra_len.
H A Ddeflate.c636 put_byte(s, s->gzhead->extra_len & 0xff);
637 put_byte(s, (s->gzhead->extra_len >> 8) & 0xff);
680 while (s->gzindex < (s->gzhead->extra_len & 0xffff)) {
696 if (s->gzindex == s->gzhead->extra_len) {
H A Dinflate.c697 state->head->extra_len = (unsigned)hold;
711 len = state->head->extra_len - state->length;

Completed in 48 milliseconds