Home
last modified time | relevance | path

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

/src/sys/contrib/ck/src/
H A Dck_hs.c93 CK_HS_WORD *probe_bound; member
243 map->probe_bound = (CK_HS_WORD *)&map[1]; in ck_hs_map_create()
244 memset(map->probe_bound, 0, prefix); in ck_hs_map_create()
246 map->probe_bound = NULL; in ck_hs_map_create()
304 if (m->probe_bound != NULL && m->probe_bound[offset] < n_probes) { in ck_hs_map_bound_set()
308 CK_HS_STORE(&m->probe_bound[offset], n_probes); in ck_hs_map_bound_set()
321 if (m->probe_bound != NULL) { in ck_hs_map_bound_get()
322 r = CK_HS_LOAD(&m->probe_bound[offset]); in ck_hs_map_bound_get()
566 if (map->probe_bound != NULL) in ck_hs_gc()
567 memset(map->probe_bound, 0, sizeof(CK_HS_WORD) * map->capacity); in ck_hs_gc()
[all …]
H A Dck_ht.c90 CK_HT_WORD *probe_bound; member
178 map->probe_bound = (CK_HT_WORD *)&map[1]; in ck_ht_map_create()
179 memset(map->probe_bound, 0, prefix); in ck_ht_map_create()
181 map->probe_bound = NULL; in ck_ht_map_create()
199 if (m->probe_bound != NULL && m->probe_bound[offset] < n_probes) { in ck_ht_map_bound_set()
203 CK_HT_STORE(&m->probe_bound[offset], n_probes); in ck_ht_map_bound_set()
216 if (m->probe_bound != NULL) { in ck_ht_map_bound_get()
217 r = CK_HT_LOAD(&m->probe_bound[offset]); in ck_ht_map_bound_get()
392 if (map->probe_bound != NULL) in ck_ht_gc()
393 memset(map->probe_bound, 0, sizeof(CK_HT_WORD) * map->capacity); in ck_ht_gc()
[all …]
H A 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 …]