Lines Matching refs:hash_head
341 IPos hash_head = 0; in deflateSetDictionary() local
368 INSERT_STRING(s, n, hash_head); in deflateSetDictionary()
370 if (hash_head) hash_head = 0; /* to make compiler happy */ in deflateSetDictionary()
1475 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
1496 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1502 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
1509 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) { in deflate_fast()
1510 s->match_length = longest_match_fast (s, hash_head); in deflate_fast()
1514 s->match_length = longest_match (s, hash_head); in deflate_fast()
1515 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) { in deflate_fast()
1516 s->match_length = longest_match_fast (s, hash_head); in deflate_fast()
1538 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1580 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1602 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1611 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1612 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1618 s->match_length = longest_match (s, hash_head); in deflate_slow()
1619 } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) { in deflate_slow()
1620 s->match_length = longest_match_fast (s, hash_head); in deflate_slow()
1658 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()