Home | History | Annotate | Download | only in net

Lines Matching defs:hash_size

410     uInt  hash_size;      /* number of elements in hash table */
411 uInt hash_bits; /* log2(hash_size) */
412 uInt hash_mask; /* hash_size-1 */
797 s->head[s->hash_size-1] = NIL; \
798 zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
865 s->hash_size = 1 << s->hash_bits;
866 s->hash_mask = s->hash_size - 1;
871 s->head = (Posf *) ZALLOC(strm, s->hash_size, sizeof(Pos));
1239 ds->head = (Posf *) ZALLOC(dest, ds->hash_size, sizeof(Pos));
1252 zmemcpy(ds->head, ss->head, ds->hash_size * sizeof(Pos));
1620 n = s->hash_size;