Lines Matching full:ht
67 __hash_init(struct lkpi_hash_head *ht, unsigned long size) in __hash_init() argument
72 CK_LIST_INIT(&ht[x].head); in __hash_init()
75 #define hash_init(ht) \ argument
76 __hash_init(ht, HASH_SIZE(ht))
92 #define hash_add_rcu(ht, node, key) do { \ argument
93 struct lkpi_hash_head *__head = &(ht)[hash_min(key, HASH_BITS(ht))]; \
106 __hash_empty(struct lkpi_hash_head *ht, unsigned long size) in __hash_empty() argument
111 if (!CK_LIST_EMPTY(&ht[x].head)) in __hash_empty()
117 #define hash_empty(ht) \ argument
118 __hash_empty(ht, HASH_SIZE(ht))
130 #define __hash_first(ht, type, member) ({ \ argument
131 const struct lkpi_hash_entry *__first = CK_LIST_FIRST(&(ht)->head); \