Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h81 : cache_(LINKER_INITIALIZED) { in Quarantine()
118 cache_.Transfer(c); in Drain()
120 if (cache_.Size() > GetSize() && recycle_mutex_.TryLock()) in Drain()
127 cache_.Transfer(c); in DrainAndRecycle()
137 cache_.PrintStats(); in PrintStats()
149 Cache cache_; variable
162 uptr cache_size = cache_.Size(); in Recycle()
163 uptr overhead_size = cache_.OverheadSize(); in Recycle()
172 cache_.MergeBatches(&tmp); in Recycle()
176 while (cache_.Size() > min_size) { in Recycle()
[all …]
/llvm-project-15.0.7/libcxx/test/std/algorithms/
H A Drobust_against_proxy_iterators_lifetime_bugs.pass.cpp36 std::set<const void*> cache_; member in LifetimeIterator::LifetimeCache
39 bool contains(const void* ptr) const { return cache_.find(ptr) != cache_.end(); } in contains()
43 cache_.insert(ptr); in insert()
48 cache_.erase(ptr); in erase()
/llvm-project-15.0.7/compiler-rt/lib/asan/
H A Dasan_allocator.cpp195 : cache_(cache), in QuarantineCallback()
221 get_allocator().Deallocate(cache_, p); in Recycle()
225 void *res = get_allocator().Allocate(cache_, size, 1); in Allocate()
233 get_allocator().Deallocate(cache_, p); in Deallocate()
237 AllocatorCache* const cache_; member