Searched refs:allocator_begin (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
H A D | lsan_common.cc | 195 uptr allocator_begin = 0, allocator_end = 0; in ScanGlobalRange() local 196 GetAllocatorGlobalRange(&allocator_begin, &allocator_end); in ScanGlobalRange() 197 if (begin <= allocator_begin && allocator_begin < end) { in ScanGlobalRange() 198 CHECK_LE(allocator_begin, allocator_end); in ScanGlobalRange() 200 if (begin < allocator_begin) in ScanGlobalRange() 201 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL", in ScanGlobalRange()
|
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
H A D | lsan_common.cc | 193 uptr allocator_begin = 0, allocator_end = 0; in ScanGlobalRange() local 194 GetAllocatorGlobalRange(&allocator_begin, &allocator_end); in ScanGlobalRange() 195 if (begin <= allocator_begin && allocator_begin < end) { in ScanGlobalRange() 196 CHECK_LE(allocator_begin, allocator_end); in ScanGlobalRange() 198 if (begin < allocator_begin) in ScanGlobalRange() 199 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL", in ScanGlobalRange()
|
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/lsan/ |
H A D | lsan_common.cpp | 222 uptr allocator_begin = 0, allocator_end = 0; in ScanGlobalRange() local 223 GetAllocatorGlobalRange(&allocator_begin, &allocator_end); in ScanGlobalRange() 224 if (begin <= allocator_begin && allocator_begin < end) { in ScanGlobalRange() 225 CHECK_LE(allocator_begin, allocator_end); in ScanGlobalRange() 227 if (begin < allocator_begin) in ScanGlobalRange() 228 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL", in ScanGlobalRange()
|