Home
last modified time | relevance | path

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

/linux/scripts/include/
A Dhashtable.h16 #define hash_head(table, key) (&(table)[(key) % HASH_SIZE(table)]) macro
42 hlist_add_head(node, hash_head(table, key))
84 hlist_for_each_entry(obj, hash_head(table, key), member)
96 hlist_for_each_entry_safe(obj, tmp, hash_head(table, key), member)
/linux/lib/zlib_deflate/
A Ddeflate.c928 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
949 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
955 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
961 s->match_length = longest_match (s, hash_head); in deflate_fast()
981 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1022 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1044 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1052 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1053 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1059 s->match_length = longest_match (s, hash_head); in deflate_slow()
[all …]
/linux/kernel/locking/
A Dlockdep.c562 struct hlist_head *hash_head; in save_trace() local
595 hlist_add_head(&trace->hash_entry, hash_head); in save_trace()
887 struct hlist_head *hash_head; in look_up_lock_class() local
922 hash_head = classhashentry(key); in look_up_lock_class()
1220 struct hlist_head *hash_head; in lockdep_register_key() local
1226 hash_head = keyhashentry(key); in lockdep_register_key()
1246 struct hlist_head *hash_head; in is_dynamic_key() local
1261 hash_head = keyhashentry(key); in is_dynamic_key()
1284 struct hlist_head *hash_head; in register_lock_class() local
1302 hash_head = classhashentry(key); in register_lock_class()
[all …]

Completed in 22 milliseconds