Searched refs:__sanitizer_get_estimated_allocated_size (Results 1 - 8 of 8) sorted by relevance

/external/compiler-rt/include/sanitizer/
H A Dallocator_interface.h24 size_t __sanitizer_get_estimated_allocated_size(size_t size);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator_interface.h23 uptr __sanitizer_get_estimated_allocated_size(uptr size);
/external/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_mman_test.cc117 EXPECT_EQ(10U, __sanitizer_get_estimated_allocated_size(10));
118 EXPECT_EQ(20U, __sanitizer_get_estimated_allocated_size(20));
119 EXPECT_EQ(100U, __sanitizer_get_estimated_allocated_size(100));
/external/compiler-rt/lib/msan/
H A Dmsan_allocator.cc214 uptr __sanitizer_get_estimated_allocated_size(uptr size) { return size; } function
216 return __sanitizer_get_estimated_allocated_size(size);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cc218 uptr __sanitizer_get_estimated_allocated_size(uptr size) { function
222 return __sanitizer_get_estimated_allocated_size(size);
/external/compiler-rt/lib/asan/tests/
H A Dasan_interface_test.cc18 EXPECT_EQ(0U, __sanitizer_get_estimated_allocated_size(0));
21 EXPECT_EQ(sizes[i], __sanitizer_get_estimated_allocated_size(sizes[i]));
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc764 uptr __sanitizer_get_estimated_allocated_size(uptr size) { function
768 return __sanitizer_get_estimated_allocated_size(size);
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc4072 size_t alloc_size = __sanitizer_get_estimated_allocated_size(sizes[i]);

Completed in 179 milliseconds