Searched refs:malloc (Results 201 - 225 of 2881) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dcurrent_allocated_bytes_test.cc56 free(malloc(200));
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dcurrent_allocated_bytes_test.cc56 free(malloc(200));
/external/clang/test/CodeGen/
H A Dblockstret.c19 void *malloc(__SIZE_TYPE__ size);
26 BigStruct_t (^global)(void) = ^{ return *(BigStruct_t *)malloc(sizeof(struct bigbig)); };
33 BigStruct_t *result = malloc(sizeof(BigStruct_t));
95 BigStruct_t *result = (BigStruct_t *)malloc(sizeof(BigStruct_t));
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dinterception_test.cc17 char *x = (char*)malloc(10 * sizeof(char));
H A Drlimit_mmap_test.cc13 x = malloc(10000000);
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dbitfield.cc14 S *s = (S*)malloc(sizeof(S));
H A Dbitfield_uaf.cc22 S *s = (S*)malloc(sizeof(S));
29 // CHECK: {{#0 .* malloc }}
H A Ddll_thread_stack_array_left_oob.cc6 #include <malloc.h>
/external/compiler-rt/test/asan/TestCases/
H A Ddeep_stack_uaf.cc24 char *x = (char*)malloc(10);
H A Dfree_hook_realloc.cc24 int *x = (int*)malloc(100);
H A Dtime_interceptor.cc13 time_t *tm = (time_t*)malloc(sizeof(time_t));
/external/compiler-rt/test/lsan/TestCases/
H A Dfork.cc15 thread_local_var = malloc(1337);
H A Dstale_stack_leak.cc26 PutPointerOnStaleStack(malloc(1337));
/external/compiler-rt/test/msan/
H A Ddeath-callback.cc19 int *volatile p = (int *)malloc(sizeof(int));
H A Ddso-origin.cc19 return malloc(sz);
41 // CHECK: {{#0 0x.* in .*malloc}}
/external/compiler-rt/test/tsan/
H A Djava_race.cc11 jptr jheap = (jptr)malloc(kHeapSize + 8) + 8;
H A Dsignal_malloc.cc10 // CHECK: #0 malloc
13 volatile char *p = (char*)malloc(1);
/external/flac/include/share/
H A Dalloc.h22 // malloc(n floor 1)
26 return malloc(n);
29 // malloc(n1 * n2) then memset to zero
36 // malloc(n1 + n2)
42 return n == ns ? malloc(ns) : NULL;
45 // malloc(n1 * n2)
51 return n == ns ? malloc(ns) : NULL;
54 // malloc(n1 * (n2 + n3))
60 return n == ns ? malloc(ns) : NULL;
/external/libunwind/src/hppa/
H A DGcreate_addr_space.c44 as = malloc (sizeof (*as));
/external/libunwind/src/ppc/
H A DGcreate_addr_space.c46 as = malloc (sizeof (*as));
/external/libunwind/src/ptrace/
H A D_UPT_create.c33 struct UPT_info *ui = malloc (sizeof (struct UPT_info));
/external/libunwind/src/x86/
H A DGcreate_addr_space.c48 as = malloc (sizeof (*as));
/external/libunwind/src/x86_64/
H A DGcreate_addr_space.c51 as = malloc (sizeof (*as));
/external/libutf/
H A Drunestrdup.c25 ns = (Rune*)malloc(sizeof(Rune)*(runestrlen(s) + 1));
/external/lldb/test/lang/c/shared_lib/
H A Dfoo.c13 struct foo *ret_val = (struct foo *) malloc (sizeof (struct foo));

Completed in 292 milliseconds

1234567891011>>