Home
last modified time | relevance | path

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

/freebsd-12-stable/sys/contrib/ck/src/
Dck_hs.c93 CK_HS_WORD *probe_bound; member
238 map->probe_bound = (CK_HS_WORD *)&map[1]; in ck_hs_map_create()
239 memset(map->probe_bound, 0, prefix); in ck_hs_map_create()
241 map->probe_bound = NULL; in ck_hs_map_create()
299 if (m->probe_bound != NULL && m->probe_bound[offset] < n_probes) { in ck_hs_map_bound_set()
303 CK_HS_STORE(&m->probe_bound[offset], n_probes); in ck_hs_map_bound_set()
316 if (m->probe_bound != NULL) { in ck_hs_map_bound_get()
317 r = CK_HS_LOAD(&m->probe_bound[offset]); in ck_hs_map_bound_get()
561 if (map->probe_bound != NULL) in ck_hs_gc()
562 memset(map->probe_bound, 0, sizeof(CK_HS_WORD) * map->capacity); in ck_hs_gc()
[all …]
Dck_ht.c93 CK_HT_WORD *probe_bound; member
181 map->probe_bound = (CK_HT_WORD *)&map[1]; in ck_ht_map_create()
182 memset(map->probe_bound, 0, prefix); in ck_ht_map_create()
184 map->probe_bound = NULL; in ck_ht_map_create()
202 if (m->probe_bound != NULL && m->probe_bound[offset] < n_probes) { in ck_ht_map_bound_set()
206 CK_HT_STORE(&m->probe_bound[offset], n_probes); in ck_ht_map_bound_set()
219 if (m->probe_bound != NULL) { in ck_ht_map_bound_get()
220 r = CK_HT_LOAD(&m->probe_bound[offset]); in ck_ht_map_bound_get()
395 if (map->probe_bound != NULL) in ck_ht_gc()
396 memset(map->probe_bound, 0, sizeof(CK_HT_WORD) * map->capacity); in ck_ht_gc()
[all …]
Dck_rhs.c90 CK_RHS_WORD probe_bound; member
98 CK_RHS_WORD probe_bound; member
199 return (map->entries.no_entries.descs[offset].probe_bound); in ck_rhs_probe_bound()
201 return (map->entries.descs[offset].probe_bound); in ck_rhs_probe_bound()
209 return (&map->entries.no_entries.descs[offset].probe_bound); in ck_rhs_probe_bound_addr()
211 return (&map->entries.descs[offset].probe_bound); in ck_rhs_probe_bound_addr()
465 if (desc->probe_bound < n_probes) { in ck_rhs_map_bound_set()
469 CK_RHS_STORE(&desc->probe_bound, n_probes); in ck_rhs_map_bound_set()
486 r = CK_RHS_LOAD(&m->entries.descs[offset].probe_bound); in ck_rhs_map_bound_get()
1032 CK_RHS_STORE(&hdesc->probe_bound, in ck_rhs_do_backward_shift_delete()
[all …]