Searched refs:allocator_begin (Results 1 - 3 of 3) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/lsan/
H A Dlsan_common.cc195 uptr allocator_begin = 0, allocator_end = 0; local
196 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
197 if (begin <= allocator_begin && allocator_begin < end) {
198 CHECK_LE(allocator_begin, allocator_end);
200 if (begin < allocator_begin)
201 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/lsan/
H A Dlsan_common.cc193 uptr allocator_begin = 0, allocator_end = 0; local
194 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
195 if (begin <= allocator_begin && allocator_begin < end) {
196 CHECK_LE(allocator_begin, allocator_end);
198 if (begin < allocator_begin)
199 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/lsan/
H A Dlsan_common.cpp222 uptr allocator_begin = 0, allocator_end = 0; local
223 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
224 if (begin <= allocator_begin && allocator_begin < end) {
225 CHECK_LE(allocator_begin, allocator_end);
227 if (begin < allocator_begin)
228 ScanRangeForPointers(begin, allocator_begin, frontier, "GLOBAL",

Completed in 196 milliseconds