Lines Matching refs:hc
155 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_ic() local
156 __c_node* c = __cbeg_[hc]; in __insert_ic()
199 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_c() local
200 __c_node* p = __cbeg_[hc]; in __insert_c()
204 __cbeg_[hc] = __fn(buf, __c, p); in __insert_c()
250 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __invalidate_all() local
251 __c_node* p = __cbeg_[hc]; in __invalidate_all()
281 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c_and_lock() local
282 __c_node* p = __cbeg_[hc]; in __find_c_and_lock()
307 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c() local
308 __c_node* p = __cbeg_[hc]; in __find_c()
334 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __erase_c() local
335 __c_node* p = __cbeg_[hc]; in __erase_c()
349 __cbeg_[hc] = p->__next_; in __erase_c()
450 size_t hc = hash<void*>()(c1) % static_cast<size_t>(__cend_ - __cbeg_); in swap() local
451 __c_node* p1 = __cbeg_[hc]; in swap()
458 hc = hash<void*>()(c2) % static_cast<size_t>(__cend_ - __cbeg_); in swap()
459 __c_node* p2 = __cbeg_[hc]; in swap()