hash_head         323 tools/packfi2/deflate.c     IPos hash_head = 0;
hash_head         350 tools/packfi2/deflate.c         INSERT_STRING(s, n, hash_head);
hash_head         352 tools/packfi2/deflate.c     if (hash_head) hash_head = 0;  /* to make compiler happy */
hash_head        1452 tools/packfi2/deflate.c     IPos hash_head = NIL; /* head of the hash chain */
hash_head        1473 tools/packfi2/deflate.c             INSERT_STRING(s, s->strstart, hash_head);
hash_head        1479 tools/packfi2/deflate.c         if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
hash_head        1486 tools/packfi2/deflate.c                 (s->strategy == Z_RLE && s->strstart - hash_head == 1)) {
hash_head        1487 tools/packfi2/deflate.c                 s->match_length = longest_match_fast (s, hash_head);
hash_head        1491 tools/packfi2/deflate.c                 s->match_length = longest_match (s, hash_head);
hash_head        1492 tools/packfi2/deflate.c             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
hash_head        1493 tools/packfi2/deflate.c                 s->match_length = longest_match_fast (s, hash_head);
hash_head        1515 tools/packfi2/deflate.c                     INSERT_STRING(s, s->strstart, hash_head);
hash_head        1558 tools/packfi2/deflate.c     IPos hash_head = NIL;    /* head of hash chain */
hash_head        1580 tools/packfi2/deflate.c             INSERT_STRING(s, s->strstart, hash_head);
hash_head        1588 tools/packfi2/deflate.c         if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
hash_head        1589 tools/packfi2/deflate.c             s->strstart - hash_head <= MAX_DIST(s)) {
hash_head        1595 tools/packfi2/deflate.c                 s->match_length = longest_match (s, hash_head);
hash_head        1596 tools/packfi2/deflate.c             } else if (s->strategy == Z_RLE && s->strstart - hash_head == 1) {
hash_head        1597 tools/packfi2/deflate.c                 s->match_length = longest_match_fast (s, hash_head);
hash_head        1635 tools/packfi2/deflate.c                     INSERT_STRING(s, s->strstart, hash_head);