HomeSort by relevance Sort by last modified time
    Searched defs:malloc (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/libunwind/tests/
Ltest-nocalloc.c 66 malloc(size_t s) function
71 func = dlsym(RTLD_NEXT, "malloc");
116 and check that it doesn't call malloc()/calloc(). */
123 * where we are sure that we're not inside malloc */
131 "FAILURE: detected %d error%s (malloc: %d, calloc: %d)\n",
  /external/python/cpython2/Lib/multiprocessing/
heap.py 191 # free a block returned by malloc()
197 # synchronously sometimes later from malloc() or free(), by calling
214 def malloc(self, size): member in class:Heap
243 block = BufferWrapper._heap.malloc(size)
  /external/python/cpython3/Lib/multiprocessing/
heap.py 199 # free a block returned by malloc()
205 # synchronously sometimes later from malloc() or free(), by calling
222 def malloc(self, size): member in class:Heap
248 block = BufferWrapper._heap.malloc(size)
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
heap.py 191 # free a block returned by malloc()
197 # synchronously sometimes later from malloc() or free(), by calling
214 def malloc(self, size): member in class:Heap
243 block = BufferWrapper._heap.malloc(size)
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
heap.py 191 # free a block returned by malloc()
197 # synchronously sometimes later from malloc() or free(), by calling
214 def malloc(self, size): member in class:Heap
243 block = BufferWrapper._heap.malloc(size)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 191 # free a block returned by malloc()
197 # synchronously sometimes later from malloc() or free(), by calling
214 def malloc(self, size): member in class:Heap
243 block = BufferWrapper._heap.malloc(size)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
heap.py 191 # free a block returned by malloc()
197 # synchronously sometimes later from malloc() or free(), by calling
214 def malloc(self, size): member in class:Heap
243 block = BufferWrapper._heap.malloc(size)
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 9 // Malloc replacement library based on CombinedAllocator.
75 void *malloc(size_t size) { function
157 void *operator new(size_t size) ALIAS("malloc");
158 void *operator new[](size_t size) ALIAS("malloc");
159 void *operator new(size_t size, std::nothrow_t const&) ALIAS("malloc");
160 void *operator new[](size_t size, std::nothrow_t const&) ALIAS("malloc");
  /external/curl/lib/
memdebug.h 94 #define malloc(size) curl_domalloc(size, __LINE__, __FILE__) macro
  /external/python/cpython3/Include/
pymem.h 73 Never mix calls to PyMem_ with calls to the platform malloc/realloc/
95 Functions supplying platform-independent semantics for malloc/realloc/
98 may be returned), even if the platform malloc and realloc don't.
117 /* PyMem_MALLOC(0) means malloc(1). Some systems would return NULL
118 for malloc(0), which would be treated as an error. Some platforms
180 void* (*malloc) (void *ctx, size_t size); member in struct:__anon33183
  /external/syslinux/core/mem/
malloc.c 2 * malloc.c
4 * Very simple linked-list based malloc()/free().
15 #include "malloc.h"
100 p = firmware->mem->malloc(size, heap, tag);
107 __export void *malloc(size_t size) function
136 return malloc(size);
229 newptr = malloc(size);
248 ptr = malloc(size);
  /external/valgrind/drd/tests/
unit_vc.c 13 void* VG_(malloc)(const HChar* cc, SizeT nbytes) function
14 { return malloc(nbytes); }
unit_bitmap.c 27 void* VG_(malloc)(const HChar* cc, SizeT nbytes) function
28 { return malloc(nbytes); }
  /bionic/libc/private/
bionic_malloc_dispatch.h 36 // Entry in malloc dispatch table.
60 MallocMalloc malloc; member in struct:MallocDispatch
  /device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
RuntimeMemAllocation.c 386 void *malloc (size_t size) function
400 return malloc (size);
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 31 #define malloc(n) AllocatePool(n) macro
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 12 // Linux-specific malloc interception.
13 // We simply define functions like malloc, free, realloc, etc.
60 INTERCEPTOR(void*, malloc, uptr size) {
62 // Hack: dlsym calls malloc before REAL(malloc) is retrieved from dlsym.
111 // We avoid including malloc.h for portability reasons.
154 void *(*malloc)(uptr bytes); member in struct:MallocDebugK
166 void *(*malloc)(uptr bytes); member in struct:MallocDebugL
176 WRAP(malloc), WRAP(free), WRAP(calloc),
181 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign)
    [all...]
asan_malloc_win.cc 12 // Windows-specific malloc interception.
64 void *malloc(size_t size) { function
71 return malloc(size);
76 return malloc(size);
147 // functions to detect a bit more bugs. Those functions seem to wrap malloc().
216 TryToOverrideFunction("malloc", (uptr)malloc);
217 TryToOverrideFunction("_malloc_base", (uptr)malloc);
218 TryToOverrideFunction("_malloc_crt", (uptr)malloc);
  /external/python/cpython3/Modules/
hashtable.h 83 void* (*malloc) (size_t size); member in struct:__anon33453
  /external/syslinux/com32/include/syslinux/
firmware.h 44 void *(*malloc)(size_t, enum heap, size_t); member in struct:mem_ops
  /external/syslinux/gpxe/src/core/
malloc.c 28 #include <gpxe/malloc.h>
58 * @c malloc(0) or @c realloc(ptr,0) will return the special value @c
67 * Code outside of malloc.c do not ever need to refer to the actual
236 * @v old_ptr Memory previously allocated by malloc(), or NULL
302 void * malloc ( size_t size ) { function
309 * @v ptr Memory allocated by malloc(), or NULL
326 * Allocate memory as per malloc(), and zero it.
334 data = malloc ( size );
  /external/valgrind/coregrind/m_gdbserver/
server.h 165 #define malloc(sz) VG_(malloc) ("gdbsrv", sz) macro
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
noembed.h 76 #ifdef malloc
77 #undef malloc macro
  /external/clang/lib/Headers/
__clang_cuda_runtime_wrapper.h 240 // malloc/free/printf calls to work without relying on
244 __device__ void *malloc(size_t) __attribute((nothrow)) __attribute__((malloc));
262 // We also need device-side std::malloc and std::free.
265 __device__ static inline void *malloc(size_t __size) { function in namespace:std
266 return ::malloc(__size);
  /external/jemalloc/include/jemalloc/
jemalloc_mangle.h 14 # define malloc je_malloc macro

Completed in 463 milliseconds

12 3 4 5