Symbol: hash_head
kernel/locking/lockdep.c
1223
struct hlist_head *hash_head;
kernel/locking/lockdep.c
1229
hash_head = keyhashentry(key);
kernel/locking/lockdep.c
1234
hlist_for_each_entry_rcu(k, hash_head, hash_entry) {
kernel/locking/lockdep.c
1238
hlist_add_head_rcu(&key->hash_entry, hash_head);
kernel/locking/lockdep.c
1250
struct hlist_head *hash_head;
kernel/locking/lockdep.c
1265
hash_head = keyhashentry(key);
kernel/locking/lockdep.c
1268
hlist_for_each_entry_rcu(k, hash_head, hash_entry) {
kernel/locking/lockdep.c
1288
struct hlist_head *hash_head;
kernel/locking/lockdep.c
1306
hash_head = classhashentry(key);
kernel/locking/lockdep.c
1315
hlist_for_each_entry_rcu(class, hash_head, hash_entry) {
kernel/locking/lockdep.c
1352
hlist_add_head_rcu(&class->hash_entry, hash_head);
kernel/locking/lockdep.c
3734
struct hlist_head *hash_head = chainhashentry(chain_key);
kernel/locking/lockdep.c
3785
hlist_add_head_rcu(&chain->entry, hash_head);
kernel/locking/lockdep.c
3798
struct hlist_head *hash_head = chainhashentry(chain_key);
kernel/locking/lockdep.c
3801
hlist_for_each_entry_rcu(chain, hash_head, entry) {
kernel/locking/lockdep.c
565
struct hlist_head *hash_head;
kernel/locking/lockdep.c
592
hash_head = stack_trace_hash + (hash & (STACK_TRACE_HASH_SIZE - 1));
kernel/locking/lockdep.c
593
hlist_for_each_entry(t2, hash_head, hash_entry) {
kernel/locking/lockdep.c
598
hlist_add_head(&trace->hash_entry, hash_head);
kernel/locking/lockdep.c
6584
struct hlist_head *hash_head = keyhashentry(key);
kernel/locking/lockdep.c
6599
hlist_for_each_entry_rcu(k, hash_head, hash_entry) {
kernel/locking/lockdep.c
890
struct hlist_head *hash_head;
kernel/locking/lockdep.c
925
hash_head = classhashentry(key);
kernel/locking/lockdep.c
933
hlist_for_each_entry_rcu_notrace(class, hash_head, hash_entry) {
lib/zlib_deflate/deflate.c
1018
IPos hash_head = NIL; /* head of hash chain */
lib/zlib_deflate/deflate.c
1040
INSERT_STRING(s, s->strstart, hash_head);
lib/zlib_deflate/deflate.c
1048
if (hash_head != NIL && s->prev_length < s->max_lazy_match &&
lib/zlib_deflate/deflate.c
1049
s->strstart - hash_head <= MAX_DIST(s)) {
lib/zlib_deflate/deflate.c
1055
s->match_length = longest_match (s, hash_head);
lib/zlib_deflate/deflate.c
1090
INSERT_STRING(s, s->strstart, hash_head);
lib/zlib_deflate/deflate.c
924
IPos hash_head = NIL; /* head of the hash chain */
lib/zlib_deflate/deflate.c
945
INSERT_STRING(s, s->strstart, hash_head);
lib/zlib_deflate/deflate.c
951
if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) {
lib/zlib_deflate/deflate.c
957
s->match_length = longest_match (s, hash_head);
lib/zlib_deflate/deflate.c
977
INSERT_STRING(s, s->strstart, hash_head);
scripts/include/hashtable.h
42
hlist_add_head(node, hash_head(table, key))
scripts/include/hashtable.h
84
hlist_for_each_entry(obj, hash_head(table, key), member)
scripts/include/hashtable.h
96
hlist_for_each_entry_safe(obj, tmp, hash_head(table, key), member)