Home
last modified time | relevance | path

Searched refs:malloc (Results 1 – 25 of 139) sorted by relevance

123456

/ndk/tests/device/test-stlport_shared-exception/jni/
Dnew3.cpp5 extern "C" void * malloc (__SIZE_TYPE__);
16 return malloc (s); in operator new()
27 return malloc (s); in operator new()
Dnew6.cpp6 extern "C" void *malloc (size_t);
15 return malloc (size); in operator new()
Dbadalloc1.cpp41 extern "C" void *malloc (size_t size) in malloc() function
79 r = malloc (size); in realloc()
85 r = malloc (size); in realloc()
Ddelete2.cpp8 extern "C" void * malloc (size_t);
16 void *p = malloc (size); in operator new()
Darraynew.cpp14 p = malloc (s); in operator new[]()
29 p = malloc (13 * sizeof (T)); in check_no_placement_cookie()
67 p = malloc (sizeof (T) * 11 + 100); in check_placement_cookie()
Dp9706.cpp9 void *operator new(size_t sz) { ++count; return malloc (sz); } in operator new()
Dnew2_1.cpp39 return (void *) std::malloc (size); in operator new()
Dnew1_2.cpp38 return (void *) std::malloc (size); in operator new()
/ndk/tests/device/test-stlport_static-exception/jni/
Dnew3.cpp5 extern "C" void * malloc (__SIZE_TYPE__);
16 return malloc (s); in operator new()
27 return malloc (s); in operator new()
Dnew6.cpp6 extern "C" void *malloc (size_t);
15 return malloc (size); in operator new()
Dbadalloc1.cpp41 extern "C" void *malloc (size_t size) in malloc() function
79 r = malloc (size); in realloc()
85 r = malloc (size); in realloc()
Ddelete2.cpp8 extern "C" void * malloc (size_t);
16 void *p = malloc (size); in operator new()
Darraynew.cpp14 p = malloc (s); in operator new[]()
29 p = malloc (13 * sizeof (T)); in check_no_placement_cookie()
67 p = malloc (sizeof (T) * 11 + 100); in check_placement_cookie()
Dp9706.cpp9 void *operator new(size_t sz) { ++count; return malloc (sz); } in operator new()
Dnew1_2.cpp38 return (void *) std::malloc (size); in operator new()
/ndk/sources/cxx-stl/stlport/stlport/stl/
D_stdexcept_base.c22 _M_name = __STATIC_CAST(char*, malloc(__size * sizeof(char))); in __Named_exception()
45 _M_name = __STATIC_CAST(char*, malloc(__size * sizeof(char))); in __Named_exception()
71 _M_name = __STATIC_CAST(char*, malloc(__size * sizeof(char)));
/ndk/sources/host-tools/gdb-stub/
Dgdb-stub.c88 (envbuf = (char *)malloc(envbufsize)) in main()
91 (cmdbuf = (char *)malloc(cmdbufsize)) in main()
117 (resbuf = (char *)malloc(len)) in main()
/ndk/sources/android/support/src/stdio/
Dstdio_impl.c55 char* mb_buffer = malloc(mb_len); in fake_file_outw()
95 char* mb_buffer = malloc(mb_len + 1); in fake_fprintf()
99 wchar_t* wide_buffer = malloc((wide_len + 1) * sizeof(wchar_t)); in fake_fprintf()
/ndk/sources/cxx-stl/gabi++/tests/
Dlibtest_malloc_lockup.cpp41 extern "C" void* malloc(size_t size) { in malloc() function
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
Dinteraction_based.hpp202 namespace std { using ::malloc; using ::free; }
211 void* res = std::malloc(s ? s : 1); in operator new()
226 void* res = std::malloc(s ? s : 1); in operator new[]()
/ndk/sources/host-tools/make-3.81/
Dalloca.c91 #define malloc xmalloc macro
93 extern pointer malloc ();
217 register pointer new = malloc (sizeof (header) + size); in alloca()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.single/
Dnew_replace.pass.cpp23 return std::malloc(s); in operator new()
Dnew_nothrow_replace.pass.cpp23 return std::malloc(s); in operator new()
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.dynamic/new.delete/new.delete.array/
Dnew_array_replace.pass.cpp23 return std::malloc(s); in operator new()
Dnew_array_nothrow_replace.pass.cpp23 return std::malloc(s); in operator new()

123456