Home
last modified time | relevance | path

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

/external/compiler-rt/lib/lsan/
Dlsan_common_linux.cc70 uptr allocator_begin = 0, allocator_end = 0; in ProcessGlobalRegionsCallback() local
71 GetAllocatorGlobalRange(&allocator_begin, &allocator_end); in ProcessGlobalRegionsCallback()
72 if (begin <= allocator_begin && allocator_begin < end) { in ProcessGlobalRegionsCallback()
73 CHECK_LE(allocator_begin, allocator_end); in ProcessGlobalRegionsCallback()
75 if (begin < allocator_begin) in ProcessGlobalRegionsCallback()
76 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL", in ProcessGlobalRegionsCallback()
/external/llvm-project/compiler-rt/lib/lsan/
Dlsan_common.cpp191 uptr allocator_begin = 0, allocator_end = 0; in ScanGlobalRange() local
192 GetAllocatorGlobalRange(&allocator_begin, &allocator_end); in ScanGlobalRange()
193 if (begin <= allocator_begin && allocator_begin < end) { in ScanGlobalRange()
194 CHECK_LE(allocator_begin, allocator_end); in ScanGlobalRange()
196 if (begin < allocator_begin) in ScanGlobalRange()
197 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL", in ScanGlobalRange()