Searched refs:hash_head (Results 1 – 3 of 3) sorted by relevance
/openbmc/linux/lib/zlib_deflate/ |
H A D | deflate.c | 928 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 …]
|
/openbmc/u-boot/lib/zlib/ |
H A D | deflate.c | 319 IPos hash_head = 0; local 346 INSERT_STRING(s, n, hash_head); 348 if (hash_head) hash_head = 0; /* to make compiler happy */ 1522 IPos hash_head; /* head of the hash chain */ local 1542 hash_head = NIL; 1544 INSERT_STRING(s, s->strstart, hash_head); 1550 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { 1555 s->match_length = longest_match (s, hash_head); 1575 INSERT_STRING(s, s->strstart, hash_head); 1618 IPos hash_head; /* head of hash chain */ local [all …]
|
/openbmc/linux/kernel/locking/ |
H A D | lockdep.c | 562 struct hlist_head *hash_head; in save_trace() local 587 hash_head = stack_trace_hash + (hash & (STACK_TRACE_HASH_SIZE - 1)); in save_trace() 588 hlist_for_each_entry(t2, hash_head, hash_entry) { in save_trace() 593 hlist_add_head(&trace->hash_entry, hash_head); in save_trace() 885 struct hlist_head *hash_head; in look_up_lock_class() local 918 hash_head = classhashentry(key); in look_up_lock_class() 926 hlist_for_each_entry_rcu_notrace(class, hash_head, hash_entry) { in look_up_lock_class() 1214 struct hlist_head *hash_head; in lockdep_register_key() local 1220 hash_head = keyhashentry(key); in lockdep_register_key() 1225 hlist_for_each_entry_rcu(k, hash_head, hash_entry) { in lockdep_register_key() [all …]
|