Home | History | Annotate | Download | only in zlib-1.2.3

Lines Matching refs:hash_size

200     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;