Searched refs:hash_head (Results 1 – 1 of 1) sorted by relevance
341 IPos hash_head = 0; in deflateSetDictionary() local368 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() local1496 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()[all …]