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)) { 1618 IPos hash_head; /* head of hash chain */ local 1639 hash_head = NIL; 1641 INSERT_STRING(s, s->strstart, hash_head); [all …]
|
/openbmc/linux/kernel/locking/ |
H A D | lockdep.c | 562 struct hlist_head *hash_head; in save_trace() local 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() 1214 struct hlist_head *hash_head; in lockdep_register_key() local 1220 hash_head = keyhashentry(key); in lockdep_register_key() 1240 struct hlist_head *hash_head; in is_dynamic_key() local 1255 hash_head = keyhashentry(key); in is_dynamic_key() 1278 struct hlist_head *hash_head; in register_lock_class() local 1296 hash_head = classhashentry(key); in register_lock_class() [all …]
|