HomeSort by relevance Sort by last modified time
    Searched refs:malloc_usable_size (Results 26 - 50 of 63) sorted by null

12 3

  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/
malloc.h 65 malloc_usable_size(void* p);
72 programming practice. malloc_usable_size can be more useful in
76 assert(malloc_usable_size(p) >= 256);
78 extern size_t malloc_usable_size(void* block);
  /prebuilts/ndk/8/platforms/android-14/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-3/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-4/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-5/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-8/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
malloc.h 36 extern size_t malloc_usable_size(void*);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
malloc.h 140 extern size_t malloc_usable_size __MALLOC_P ((void *__ptr));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h 140 extern size_t malloc_usable_size __MALLOC_P ((void *__ptr));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
malloc.h 140 extern size_t malloc_usable_size __MALLOC_P ((void *__ptr));
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 106 INTERCEPTOR(uptr, malloc_usable_size, void *ptr) {
  /external/eigen/unsupported/test/mpreal/
dlmalloc.h 58 #define dlmalloc_usable_size malloc_usable_size
397 malloc_usable_size(void* p);
404 programming practice. malloc_usable_size can be more useful in
408 assert(malloc_usable_size(p) >= 256);
535 malloc_usable_size(void* p) behaves the same as malloc_usable_size;
  /bionic/libc/upstream-dlmalloc/
malloc.h 64 #define dlmalloc_usable_size malloc_usable_size
508 malloc_usable_size(void* p);
515 programming practice. malloc_usable_size can be more useful in
519 assert(malloc_usable_size(p) >= 256);
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 141 void malloc_usable_size() { function
  /external/compiler-rt/lib/asan/tests/
asan_test.cc 378 "AddressSanitizer: attempting to call malloc_usable_size()";
384 EXPECT_EQ(0U, malloc_usable_size(NULL));
385 EXPECT_EQ(kArraySize, malloc_usable_size(array));
386 EXPECT_EQ(sizeof(int), malloc_usable_size(int_ptr));
387 EXPECT_DEATH(malloc_usable_size((void*)0x123), kMallocUsableSizeErrorMsg);
388 EXPECT_DEATH(malloc_usable_size(array + kArraySize / 2),
391 EXPECT_DEATH(malloc_usable_size(array), kMallocUsableSizeErrorMsg);
    [all...]
  /external/valgrind/main/coregrind/
m_tooliface.c 302 SizeT (*malloc_usable_size) ( ThreadId, void* ),
316 VG_(tdict).tool_malloc_usable_size = malloc_usable_size;
  /external/valgrind/main/coregrind/m_replacemalloc/
vg_replace_malloc.c 92 10170 MALLOC_USABLE_SIZE
885 /*---------------------- malloc_usable_size ----------------------*/
887 #define MALLOC_USABLE_SIZE(soname, fnname) \
895 MALLOC_TRACE("malloc_usable_size(%p)", p ); \
906 MALLOC_USABLE_SIZE(VG_Z_LIBC_SONAME, malloc_usable_size);
907 MALLOC_USABLE_SIZE(SO_SYN_MALLOC, malloc_usable_size);
908 MALLOC_USABLE_SIZE(VG_Z_LIBC_SONAME, malloc_size);
909 MALLOC_USABLE_SIZE(SO_SYN_MALLOC, malloc_size)
    [all...]
  /bionic/libc/bionic/
malloc_debug_common.cpp 193 extern "C" size_t malloc_usable_size(void* mem) { function
  /external/valgrind/main/memcheck/
mc_include.h 140 SizeT MC_(malloc_usable_size) ( ThreadId tid, void* p );
mc_malloc_wrappers.c 549 SizeT MC_(malloc_usable_size) ( ThreadId tid, void* p ) function
  /external/valgrind/main/massif/
ms_main.c     [all...]

Completed in 1181 milliseconds

12 3