Searched
full:malloc (Results
251 -
275 of
6596) sorted by null
<<11121314151617181920>>
/external/valgrind/main/memcheck/tests/ |
holey_buffer_too_small.stderr.exp | 7 at 0x........: malloc (vg_replace_malloc.c:...) 10 at 0x........: malloc (vg_replace_malloc.c:...) 16 at 0x........: malloc (vg_replace_malloc.c:...) 25 at 0x........: malloc (vg_replace_malloc.c:...) 34 at 0x........: malloc (vg_replace_malloc.c:...) 43 at 0x........: malloc (vg_replace_malloc.c:...)
|
leak-cases-possible.stderr.exp | 6 at 0x........: malloc (vg_replace_malloc.c:...) 12 at 0x........: malloc (vg_replace_malloc.c:...) 18 at 0x........: malloc (vg_replace_malloc.c:...)
|
/bionic/libc/include/ |
malloc.h | 21 * Declaration of malloc routines. Bionic uses dlmalloc (see 23 * defined malloc.h interface small. 30 extern void* malloc(size_t byte_count) __mallocfunc __wur;
|
/development/tools/yuv420sp2rgb/ |
debug.h | 47 static inline void *MALLOC(unsigned int size) { 48 void *m = malloc(size); 49 FAILIF(NULL == m, "malloc(%d) failed!\n", size);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/ |
substr.h | 51 SubStr *r = malloc(sizeof(SubStr)); 67 SubStr *r = malloc(sizeof(SubStr)); 83 SubStr *r = malloc(sizeof(SubStr));
|
scanner.h | 39 Scanner *r = malloc(sizeof(Scanner));
|
/external/clang/test/Analysis/ |
Malloc+MismatchedDeallocator_intersections.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.Malloc,unix.MismatchedDeallocator -analyzer-store region -std=c++11 -verify %s 5 void *malloc(size_t); 9 // Check that unix.Malloc + unix.MismatchedDeallocator does not enable
|
NewDelete-variadic.cpp | 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,cplusplus.NewDelete,alpha.cplusplus.NewDeleteLeaks,unix.Malloc -std=c++11 -fblocks -verify %s
|
/external/clang/test/Sema/ |
extern-redecl.c | 52 float *malloc(); // expected-warning {{incompatible redeclaration of library function}} expected-note 2 {{is a builtin}} 57 float *malloc(); // expected-warning {{incompatible redeclaration of library function}} 62 void *(*_malloc)() = &malloc;
|
/external/pixman/test/ |
combiner-test.c | 117 argb_t *src_bytes = malloc (WIDTH * sizeof (argb_t)); 118 argb_t *mask_bytes = malloc (WIDTH * sizeof (argb_t)); 119 argb_t *dest_bytes = malloc (WIDTH * sizeof (argb_t));
|
/external/yaffs2/yaffs2/direct/ |
ydirectenv.h | 47 #define YMALLOC(x) malloc(x) 49 #define YMALLOC_ALT(x) malloc(x) 52 #define YMALLOC_DMA(x) malloc(x)
|
/frameworks/av/libvideoeditor/osal/src/ |
M4PSW_MemoryInterface.c | 51 * If size is 0, malloc on WIN OS allocates a zero-length item in 53 * On other platforms, malloc could returns an invalid pointer 65 Address = (M4OSA_MemAddr32) malloc(size);
|
/external/bison/lib/ |
realloc.c | 32 /* Infer the properties of the system's malloc function. 33 The gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU. */ 44 use malloc. */ 68 result = malloc (n);
|
/external/chromium/base/allocator/ |
README | 13 problem is that by default, the windows library does not declare malloc and 42 void* malloc(size_t s); 56 "tcmalloc" - TC Malloc (default) 57 "jemalloc" - JE Malloc
|
/external/chromium/base/third_party/dmg_fp/ |
gcc_64_bit.patch | 17 @@ -221,7 +225,7 @@ extern void *MALLOC(size_t);
|
/external/chromium_org/base/allocator/ |
README | 13 problem is that by default, the windows library does not declare malloc and 42 void* malloc(size_t s); 56 "tcmalloc" - TC Malloc (default) 57 "jemalloc" - JE Malloc
|
/external/chromium_org/base/third_party/dmg_fp/ |
gcc_64_bit.patch | 17 @@ -221,7 +225,7 @@ extern void *MALLOC(size_t);
|
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/ |
reverse.cc | 11 char* reversed = static_cast<char*>(malloc(len + 1));
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
srpc_params.cc | 24 // We use malloc/new here rather than new/delete, because the SRPC layer 25 // is written in C and hence will use malloc/free. 29 reinterpret_cast<NaClSrpcArg*>(malloc(kLength * sizeof(*args))); 62 // malloc! We cannot use browser's allocation API
|
/external/chromium_org/third_party/sqlite/src/test/ |
async2.test | 49 foreach err [list ioerr malloc-transient malloc-persistent] { 65 malloc-persistent { sqlite3_memdebug_fail $n -repeat 1 } 66 malloc-transient { sqlite3_memdebug_fail $n -repeat 0 }
|
veryquick.test | 8 # to malloc or IO error simulation. With these tests omitted, the overall
|
/external/chromium_org/third_party/tcmalloc/chromium/src/ |
libc_override_glibc.h | 33 // Used to override malloc routines on systems that are using glibc. 68 # include "libc_override_redefine.h" // defines functions malloc()/etc 78 // routines on RedHat 9 allocate memory using malloc() and free it 80 // implementations of malloc/free, we need to make sure that the 103 // We also have to hook libc malloc. While our work with weak symbols 104 // should make sure libc malloc is never called in most situations, it 106 // environment variable set. The below hooks libc to call our malloc 130 // making sure the hooks are set before the first malloc call the 133 #include <malloc.h> // for __malloc_hook, etc.
|
/external/chromium_org/third_party/tcmalloc/vendor/src/ |
libc_override_glibc.h | 33 // Used to override malloc routines on systems that are using glibc. 57 # include "libc_override_redefine.h" // defines functions malloc()/etc 67 // routines on RedHat 9 allocate memory using malloc() and free it 69 // implementations of malloc/free, we need to make sure that the 92 // We also have to hook libc malloc. While our work with weak symbols 93 // should make sure libc malloc is never called in most situations, it 95 // environment variable set. The below hooks libc to call our malloc 119 // making sure the hooks are set before the first malloc call the 122 #include <malloc.h> // for __malloc_hook, etc.
|
/external/chromium_org/tools/deep_memory_profiler/tests/data/ |
heap.01234.0001.heap | 18 profiled-malloc 1935377 1873937
|
/external/clang/INPUTS/ |
macro_pounder_obj.c | 3 // heavily constrained by darwin's malloc.
|
Completed in 1411 milliseconds
<<11121314151617181920>>