Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/lsan/
H A Dlsan_common_fuchsia.cpp73 InternalMmapVector<uptr> allocator_caches; in LockStuffAndStopTheWorld() member
107 GetAllThreadAllocatorCachesLocked(&params.allocator_caches); in LockStuffAndStopTheWorld()
108 __sanitizer::Sort(params.allocator_caches.data(), in LockStuffAndStopTheWorld()
109 params.allocator_caches.size()); in LockStuffAndStopTheWorld()
118 auto i = __sanitizer::InternalLowerBound(params->allocator_caches, begin); in LockStuffAndStopTheWorld()
119 if (i < params->allocator_caches.size() && in LockStuffAndStopTheWorld()
120 params->allocator_caches[i] >= begin && in LockStuffAndStopTheWorld()
121 end - params->allocator_caches[i] <= sizeof(AllocatorCache)) { in LockStuffAndStopTheWorld()
123 ScanRangeForPointers(begin, params->allocator_caches[i], in LockStuffAndStopTheWorld()
125 uptr begin2 = params->allocator_caches[i] + sizeof(AllocatorCache); in LockStuffAndStopTheWorld()