Lines Matching refs:hashval
51 hash = atomic_load_explicit(&htab->table[idx].hashval, in lookup()
68 hash = atomic_load_explicit(&htab->table[idx].hashval, in lookup()
87 hash = atomic_load_explicit(&htab->table[idx].hashval, in insert_helper()
102 atomic_store_explicit(&htab->table[idx].hashval, hval, in insert_helper()
110 hash = atomic_load_explicit(&htab->table[idx].hashval, in insert_helper()
129 hash = atomic_load_explicit(&htab->table[idx].hashval, in insert_helper()
144 atomic_store_explicit(&htab->table[idx].hashval, hval, in insert_helper()
152 hash = atomic_load_explicit(&htab->table[idx].hashval, in insert_helper()
203 atomic_init(&htab->table[record_it].hashval, (uintptr_t) NULL); in resize_helper()
234 HASHTYPE hashval = atomic_load_explicit( in resize_helper() local
235 &htab->old_table[record_it].hashval, in resize_helper()
237 assert(hashval); in resize_helper()
239 insert_helper(htab, hashval, val_ptr); in resize_helper()
374 atomic_init(&htab->table[i].hashval, (uintptr_t) NULL); in INIT()