Lines Matching refs:hvalue
68 avtab_insert_node(struct avtab *h, int hvalue, in avtab_insert_node() argument
82 newnode->next = flex_array_get_ptr(h->htable, hvalue); in avtab_insert_node()
83 if (flex_array_put_ptr(h->htable, hvalue, newnode, in avtab_insert_node()
96 int hvalue; in avtab_insert() local
103 hvalue = avtab_hash(key, h->mask); in avtab_insert()
104 for (prev = NULL, cur = flex_array_get_ptr(h->htable, hvalue); in avtab_insert()
123 newnode = avtab_insert_node(h, hvalue, prev, cur, key, datum); in avtab_insert()
137 int hvalue; in avtab_insert_nonunique() local
143 hvalue = avtab_hash(key, h->mask); in avtab_insert_nonunique()
144 for (prev = NULL, cur = flex_array_get_ptr(h->htable, hvalue); in avtab_insert_nonunique()
162 return avtab_insert_node(h, hvalue, prev, cur, key, datum); in avtab_insert_nonunique()
167 int hvalue; in avtab_search() local
174 hvalue = avtab_hash(key, h->mask); in avtab_search()
175 for (cur = flex_array_get_ptr(h->htable, hvalue); cur; in avtab_search()
203 int hvalue; in avtab_search_node() local
210 hvalue = avtab_hash(key, h->mask); in avtab_search_node()
211 for (cur = flex_array_get_ptr(h->htable, hvalue); cur; in avtab_search_node()