OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CallocShouldReturnNullDueToOverflow
(Results
1 - 6
of
6
) sorted by null
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.cc
78
bool
CallocShouldReturnNullDueToOverflow
(uptr size, uptr n) {
sanitizer_allocator.h
[
all
...]
/external/compiler-rt/lib/asan/
asan_allocator.cc
717
if (__sanitizer::
CallocShouldReturnNullDueToOverflow
(size, nmemb)) return 0;
asan_allocator2.cc
605
if (
CallocShouldReturnNullDueToOverflow
(size, nmemb)) return 0;
/external/compiler-rt/lib/msan/
msan_interceptors.cc
722
if (
CallocShouldReturnNullDueToOverflow
(size, nmemb)) return 0;
/external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc
358
if (__sanitizer::
CallocShouldReturnNullDueToOverflow
(size, n)) return 0;
[
all
...]
Completed in 186 milliseconds