Lines Matching refs:__c
122 __libcpp_db::__insert_ic(void* __i, const void* __c) in __insert_ic() argument
129 size_t hc = hash<const void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_ic()
133 while (c->__c_ != __c) in __insert_ic()
145 __libcpp_db::__insert_c(void* __c) in __insert_c() argument
176 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __insert_c()
186 r->__c_ = __c; in __insert_c()
226 __libcpp_db::__invalidate_all(void* __c) in __invalidate_all() argument
233 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __invalidate_all()
237 while (p->__c_ != __c) in __invalidate_all()
252 __libcpp_db::__find_c_and_lock(void* __c) const in __find_c_and_lock()
264 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c_and_lock()
273 while (p->__c_ != __c) in __find_c_and_lock()
288 __libcpp_db::__find_c(void* __c) const in __find_c()
290 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __find_c()
293 while (p->__c_ != __c) in __find_c()
310 __libcpp_db::__erase_c(void* __c) in __erase_c() argument
317 size_t hc = hash<void*>()(__c) % static_cast<size_t>(__cend_ - __cbeg_); in __erase_c()
323 while (p->__c_ != __c) in __erase_c()