HomeSort by relevance Sort by last modified time
    Searched defs:malloc (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/clang/test/Sema/
implicit-builtin-freestanding.c 3 int malloc(int a) { return a; } function
implicit-builtin-redecl.c 4 static void* malloc(int);
5 static void* malloc(int size) { function
  /external/bison/lib/
malloc.c 0 /* malloc() function that is glibc compatible.
23 #undef malloc macro
35 return malloc (n);
  /external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/
pr5056.cpp 3 extern "C" void * malloc(int);
6 void *malloc(int);
10 inline void *A<T>::malloc(int) function in class:A
16 malloc(10);
  /ndk/sources/host-tools/sed-4.2.1/lib/
malloc.c 3 /* malloc() function that is glibc compatible.
24 /* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h. */
25 #ifdef malloc
27 # undef malloc macro
35 /* Call the system's malloc below. */
36 #undef malloc macro
51 result = malloc (n);
realloc.c 27 /* Infer the properties of the system's malloc function.
28 Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h. */
29 #if GNULIB_MALLOC_GNU && !defined malloc
33 /* Below we want to call the system's malloc and realloc.
35 declaration of malloc(), not of rpl_malloc(), and likewise for realloc. */
36 #undef malloc macro
44 /* Below we want to call the system's malloc and realloc.
47 #undef malloc macro
52 use malloc. */
76 result = malloc (n)
    [all...]
  /external/bluetooth/glib/glib/gnulib/
g-gnulib.h 33 #undef malloc macro
36 #define malloc g_malloc macro
  /external/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 36 // By default, memory allocated using MALLOC() is initialized
39 return MALLOC(n | ALLOC_NO_ZMEM);
44 return MALLOC(numElements * elementSize);
57 // Use MALLOC macro instead of the standard malloc function.
58 // Although RVCT provides malloc, we can't use it in BREW
60 #define malloc(n) mallocBrew(n) macro
  /hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/
OMX_DebugMem.h 34 #define malloc(x) OMX_DebugMem_malloc(x,__FILE__,__FUNCTION__,__LINE__) macro
  /hardware/ti/omap4xxx/domx/omx_core/inc/
OMX_DebugMem.h 58 #define malloc(x) OMX_DebugMem_malloc(x,__FILE__,__FUNCTION__,__LINE__) 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.
23 #include <malloc.h>
27 void* (*malloc)(size_t bytes); member in struct:MallocDebug
35 malloc, free, calloc, realloc, memalign
67 INTERCEPTOR(void*, malloc, size_t size) {
asan_malloc_win.cc 12 // Windows-specific malloc interception.
45 void *malloc(size_t size) { function
51 return malloc(size);
109 // set on malloc/free etc (e.g. dllimport), so declare a few things manually:
121 if (GetRealFunctionAddress("malloc", (void**)&crt_malloc)) {
122 // Replace malloc in the CRT dll with a jump to our malloc.
127 ptrdiff_t jmp_offset = (char*)malloc - (char*)crt_malloc - 5;
  /external/expat/amiga/
stdlib.c 29 void * malloc (size_t len) function
46 return malloc(len2);
54 void * new_mem = malloc(len2);
  /external/ipsec-tools/src/racoon/
gcmalloc.h 35 * Debugging malloc glue for Racoon.
46 * malloc(), calloc(), realloc(), and free() entry points in the main
55 malloc(size_t size) function
111 #define racoon_malloc(sz) malloc((sz))
  /bionic/libc/bionic/
malloc_debug_common.h 30 * Contains declarations of types and constants used by malloc leak
70 /* Entry in malloc dispatch table. */
73 /* Address of the actual malloc routine. */
74 void* (*malloc)(size_t bytes); member in struct:MallocDebug
85 /* Malloc debugging initialization and finalization routines.
87 * These routines must be implemented in .so modules that implement malloc
91 * They are implemented in bionic/libc/bionic/malloc_debug_common.c when malloc
  /external/chromium/base/allocator/
generic_allocators.cc 6 // low-level functions malloc() and free(). This way, including a new
16 ptr = malloc(size);
52 // If flag is 0 (default), calls to malloc will behave normally.
53 // If flag is 1, calls to malloc will behave like calls to new,
71 void* result = malloc(size);
90 // Generally, calls to malloc() have padding. So a request
91 // to malloc N bytes actually malloc's N+x bytes. Later, if
105 #undef malloc macro
122 return malloc(size)
    [all...]
  /external/srec/portable/include/
pmemory.h 64 #define MALLOC(n, tag) malloc(n)
69 #define NEW(type, tag) ((type*)MALLOC(sizeof(type), tag))
85 #define malloc #error macro
99 * Portable malloc()
101 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes, tag, L(__FILE__), __LINE__))
104 * Portable malloc()
106 #define MALLOC(nbBytes, tag) (pmalloc(nbBytes))
138 #define NEW(type, tag) ((type*) MALLOC(sizeof(type), tag))
162 * Allocates specified number of bytes, similar to malloc but initializes th
    [all...]
  /external/valgrind/main/drd/tests/
unit_vc.c 13 void* VG_(malloc)(HChar* cc, SizeT nbytes) function
14 { return malloc(nbytes); }
unit_bitmap.c 25 void* VG_(malloc)(HChar* cc, SizeT nbytes) function
26 { return malloc(nbytes); }
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
memory.c 59 // we need to call the `real' malloc and free, not our replacements
60 #undef malloc macro
90 if (!(pool = malloc(chunksize))) return 0;
128 ch = malloc(minreq);
131 ch = malloc(pool->chunksize);
  /external/bluetooth/glib/glib/
gmem.h 85 gpointer (*malloc) (gsize n_bytes); member in struct:_GMemVTable
  /external/valgrind/main/callgrind/
debug.c 438 void* CLG_(malloc)(HChar* cc, UWord s, char* f) function
440 CLG_DEBUG(3, "Malloc(%lu) in %s.\n", s, f);
441 return VG_(malloc)(cc,s);
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 182 #define malloc(sz) VG_(arena_malloc) (VG_AR_CORE, "gdbsrv", sz) macro
  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 52 #define malloc(n) fastMalloc(n) macro
100 // Malloc validation is a scheme whereby a tag is attached to an
MemoryManager.cpp 23 #undef malloc macro
32 #include <malloc.h>
64 return malloc(size);
115 void *fastMalloc(size_t n) { return malloc(n); }

Completed in 778 milliseconds

1 2 3