HomeSort by: relevance | last modified time | path
    Searched defs:allocator_end (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.cc 195 uptr allocator_begin = 0, allocator_end = 0; local
196 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
198 CHECK_LE(allocator_begin, allocator_end);
199 CHECK_LE(allocator_end, end);
203 if (allocator_end < end)
204 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
lsan_common.cc 195 uptr allocator_begin = 0, allocator_end = 0; local
196 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
198 CHECK_LE(allocator_begin, allocator_end);
199 CHECK_LE(allocator_end, end);
203 if (allocator_end < end)
204 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
  /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/
lsan_common.cpp 222 uptr allocator_begin = 0, allocator_end = 0; local
223 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
225 CHECK_LE(allocator_begin, allocator_end);
226 CHECK_LE(allocator_end, end);
230 if (allocator_end < end)
231 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
lsan_common.cpp 222 uptr allocator_begin = 0, allocator_end = 0; local
223 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
225 CHECK_LE(allocator_begin, allocator_end);
226 CHECK_LE(allocator_end, end);
230 if (allocator_end < end)
231 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
  /src/external/gpl3/gcc/dist/libsanitizer/lsan/
lsan_common.cpp 340 uptr allocator_begin = 0, allocator_end = 0; local
341 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
343 CHECK_LE(allocator_begin, allocator_end);
344 CHECK_LE(allocator_end, end);
348 if (allocator_end < end)
349 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);
lsan_common.cpp 340 uptr allocator_begin = 0, allocator_end = 0; local
341 GetAllocatorGlobalRange(&allocator_begin, &allocator_end);
343 CHECK_LE(allocator_begin, allocator_end);
344 CHECK_LE(allocator_end, end);
348 if (allocator_end < end)
349 ScanRangeForPointers(allocator_end, end, frontier, "GLOBAL", kReachable);

Completed in 91 milliseconds