Home | History | Annotate | Download | only in zlib

Lines Matching refs:hash_size

195     s->head[s->hash_size-1] = NIL; \
196 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
278 s->hash_size = 1 << s->hash_bits;
279 s->hash_mask = s->hash_size - 1;
284 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
982 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
994 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1488 n = s->hash_size;