Lines Matching refs:oalp_entry
24 struct oalp_entry { struct
37 static struct oalp_entry *sys_hashmap_oa_lp_find(const struct sys_hashmap *map, uint64_t key, in sys_hashmap_oa_lp_find() argument
40 struct oalp_entry *entry = NULL; in sys_hashmap_oa_lp_find()
43 struct oalp_entry *const buckets = map->data->buckets; in sys_hashmap_oa_lp_find()
80 struct oalp_entry *entry = NULL; in sys_hashmap_oa_lp_insert_no_rehash()
118 struct oalp_entry *entry; in sys_hashmap_oa_lp_rehash()
119 struct oalp_entry *old_buckets; in sys_hashmap_oa_lp_rehash()
120 struct oalp_entry *new_buckets; in sys_hashmap_oa_lp_rehash()
134 old_buckets = (struct oalp_entry *)data->buckets; in sys_hashmap_oa_lp_rehash()
136 new_buckets = (struct oalp_entry *)map->alloc_func(NULL, new_n_buckets * sizeof(*entry)); in sys_hashmap_oa_lp_rehash()
169 struct oalp_entry *entry; in sys_hashmap_oa_lp_iter_next()
171 struct oalp_entry *buckets = map->data->buckets; in sys_hashmap_oa_lp_iter_next()
180 i = (struct oalp_entry *)it->state - buckets; in sys_hashmap_oa_lp_iter_next()
212 struct oalp_entry *entry; in sys_hashmap_oa_lp_clear()
214 struct oalp_entry *buckets = data->buckets; in sys_hashmap_oa_lp_clear()
249 struct oalp_entry *entry; in sys_hashmap_oa_lp_remove()
273 struct oalp_entry *entry; in sys_hashmap_oa_lp_get()