Home
last modified time | relevance | path

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

/OK3568_Linux_fs/kernel/lib/zlib_deflate/
H A Ddeflate.c921 IPos hash_head = NIL; /* head of the hash chain */ in deflate_fast() local
942 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
948 if (hash_head != NIL && s->strstart - hash_head <= MAX_DIST(s)) { in deflate_fast()
954 s->match_length = longest_match (s, hash_head); in deflate_fast()
974 INSERT_STRING(s, s->strstart, hash_head); in deflate_fast()
1015 IPos hash_head = NIL; /* head of hash chain */ in deflate_slow() local
1037 INSERT_STRING(s, s->strstart, hash_head); in deflate_slow()
1045 if (hash_head != NIL && s->prev_length < s->max_lazy_match && in deflate_slow()
1046 s->strstart - hash_head <= MAX_DIST(s)) { in deflate_slow()
1052 s->match_length = longest_match (s, hash_head); in deflate_slow()
[all …]
/OK3568_Linux_fs/u-boot/lib/zlib/
H A Ddeflate.c319 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 …]
/OK3568_Linux_fs/kernel/kernel/locking/
H A Dlockdep.c530 struct hlist_head *hash_head; in save_trace() local
555 hash_head = stack_trace_hash + (hash & (STACK_TRACE_HASH_SIZE - 1)); in save_trace()
556 hlist_for_each_entry(t2, hash_head, hash_entry) { in save_trace()
561 hlist_add_head(&trace->hash_entry, hash_head); in save_trace()
847 struct hlist_head *hash_head; in look_up_lock_class() local
880 hash_head = classhashentry(key); in look_up_lock_class()
888 hlist_for_each_entry_rcu_notrace(class, hash_head, hash_entry) { in look_up_lock_class()
1174 struct hlist_head *hash_head; in lockdep_register_key() local
1180 hash_head = keyhashentry(key); in lockdep_register_key()
1185 hlist_for_each_entry_rcu(k, hash_head, hash_entry) { in lockdep_register_key()
[all …]