Searched refs:hash_size (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c224 s->head[s->hash_size-1] = NIL; \
225 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
307 s->hash_size = 1 << s->hash_bits;
308 s->hash_mask = s->hash_size - 1;
313 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
946 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
958 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1331 n = s->hash_size;
H A Ddeflate.h161 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
162 uInt hash_bits; /* log2(hash_size) */
163 uInt hash_mask; /* hash_size-1 */

Completed in 54 milliseconds