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

/barrelfish-master/lib/zlib/
H A Ddeflate.c200 s->head[s->hash_size-1] = NIL; \
201 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
283 s->hash_size = 1 << s->hash_bits;
284 s->hash_mask = s->hash_size - 1;
289 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
922 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
934 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1307 n = s->hash_size;
H A Ddeflate.h137 uInt hash_size; /* number of elements in hash table */ member in struct:internal_state
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */

Completed in 35 milliseconds