Lines Matching refs:head
9 struct arena_list_head head; member
29 return &__select_bucket(htab, hash)->head; in select_bucket()
40 static hashtab_elem_t *lookup_elem_raw(arena_list_head_t *head, __u32 hash, int key) in lookup_elem_raw() argument
44 list_for_each_entry(l, head, hash_node) in lookup_elem_raw()
59 arena_list_head_t *head; in htab_lookup_elem() local
62 head = select_bucket(htab, key); in htab_lookup_elem()
63 l_old = lookup_elem_raw(head, htab_hash(key), key); in htab_lookup_elem()
72 arena_list_head_t *head; in htab_update_elem() local
75 head = select_bucket(htab, key); in htab_update_elem()
76 l_old = lookup_elem_raw(head, htab_hash(key), key); in htab_update_elem()
85 list_add_head(&l_new->hash_node, head); in htab_update_elem()