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

  /external/compiler-rt/include/sanitizer/
asan_interface.h 103 size_t __asan_get_allocated_size(const void *p);
  /external/compiler-rt/lib/asan/
asan_interface_internal.h 119 uptr __asan_get_allocated_size(const void *p)
asan_rtl.cc 298 case 18: __asan_get_allocated_size(0); break;
asan_allocator2.cc 800 uptr __asan_get_allocated_size(const void *p) { function
  /external/compiler-rt/lib/asan/tests/
asan_noinst_test.cc 359 "attempting to call __asan_get_allocated_size()";
369 EXPECT_EQ(kArraySize, __asan_get_allocated_size(array));
371 EXPECT_EQ(sizeof(int), __asan_get_allocated_size(int_ptr));
377 EXPECT_DEATH(__asan_get_allocated_size(wild_addr), kGetAllocatedSizeErrorMsg);
379 EXPECT_DEATH(__asan_get_allocated_size(array + kArraySize / 2),
382 // NULL is not owned, but is a valid argument for __asan_get_allocated_size().
384 EXPECT_EQ(0U, __asan_get_allocated_size(NULL));
390 EXPECT_DEATH(__asan_get_allocated_size(array), kGetAllocatedSizeErrorMsg);
399 EXPECT_LT(__asan_get_allocated_size(zero_alloc), 2U);
756 EXPECT_EQ(sizes[idx], __asan_get_allocated_size(pointers[idx]))
    [all...]

Completed in 150 milliseconds