HomeSort by relevance Sort by last modified time
    Searched refs:__sanitizer_get_estimated_allocated_size (Results 1 - 8 of 8) sorted by null

  /external/compiler-rt/include/sanitizer/
allocator_interface.h 24 size_t __sanitizer_get_estimated_allocated_size(size_t size);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator_interface.h 23 uptr __sanitizer_get_estimated_allocated_size(uptr size);
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mman_test.cc 117 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/
msan_allocator.cc 214 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/
tsan_mman.cc 218 uptr __sanitizer_get_estimated_allocated_size(uptr size) { function
222 return __sanitizer_get_estimated_allocated_size(size);
  /external/compiler-rt/lib/asan/tests/
asan_interface_test.cc 18 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/
asan_allocator2.cc 764 uptr __sanitizer_get_estimated_allocated_size(uptr size) { function
768 return __sanitizer_get_estimated_allocated_size(size);
  /external/compiler-rt/lib/msan/tests/
msan_test.cc     [all...]

Completed in 229 milliseconds