Home
last modified time | relevance | path

Searched refs:hash_head (Results 1 – 2 of 2) sorted by relevance

/linux-4.1.27/lib/zlib_deflate/
Ddeflate.c917 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
938 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
944 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
950 s->match_length = longest_match (s, hash_head); in deflate_fast()
970 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1011 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1033 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1041 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1042 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1048 s->match_length = longest_match (s, hash_head); in deflate_slow()
[all …]
/linux-4.1.27/kernel/locking/
Dlockdep.c669 struct list_head *hash_head; in look_up_lock_class() local
714 hash_head = classhashentry(key); in look_up_lock_class()
722 list_for_each_entry_rcu(class, hash_head, hash_entry) { in look_up_lock_class()
745 struct list_head *hash_head; in register_lock_class() local
768 hash_head = classhashentry(key); in register_lock_class()
777 list_for_each_entry_rcu(class, hash_head, hash_entry) { in register_lock_class()
808 list_add_tail_rcu(&class->hash_entry, hash_head); in register_lock_class()
2020 struct list_head *hash_head = chainhashentry(chain_key); in lookup_chain_cache() local
2036 list_for_each_entry_rcu(chain, hash_head, entry) { in lookup_chain_cache()
2060 list_for_each_entry(chain, hash_head, entry) { in lookup_chain_cache()
[all …]