Searched refs:malloc (Results 226 - 250 of 2881) sorted by relevance

1234567891011>>

/external/lldb/test/lang/c/shared_lib_stripped_symbols/
H A Dfoo.c13 struct foo *ret_val = (struct foo *) malloc (sizeof (struct foo));
/external/pixman/demos/
H A Dscreen-test.c12 uint32_t *src1 = malloc (WIDTH * HEIGHT * 4);
13 uint32_t *src2 = malloc (WIDTH * HEIGHT * 4);
14 uint32_t *src3 = malloc (WIDTH * HEIGHT * 4);
15 uint32_t *dest = malloc (3 * WIDTH * 2 * HEIGHT * 4);
/external/tcpdump/missing/
H A Ddatalinks.c62 *dlt_buffer = (int*)malloc(sizeof(**dlt_buffer));
H A Dstrdup.c53 if ((copy = malloc(len)) == NULL)
/external/valgrind/main/VEX/test/
H A Dfstenv.c13 unsigned int* buf = malloc(7*sizeof(int));
/external/valgrind/main/massif/tests/
H A Dbasic.c14 a[i] = malloc(400); // 400 is divisible by 16 -- so no slop.
H A Dmalloc_usable.c2 #include "tests/malloc.h"
11 int* x = malloc(99);
/external/valgrind/main/memcheck/tests/
H A Dbadpoll.c12 struct pollfd* ufds = malloc(2 * sizeof(struct pollfd) - 1);
H A Dbadrw.c5 void* x = malloc(10);
H A Dbuflen_check.stderr.exp4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
9 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Derr_disable2.c27 block = malloc(10);
H A Derr_disable_arange1.c14 = (volatile int* volatile)malloc(1000 * sizeof(int));
H A Derrs1.c12 void zzzzzzz ( void ) { p = malloc(10); }
H A Dexitprog.c15 char* a = malloc(ZILLION * sizeof(char));
H A Dfwrite.c7 char* arr = malloc(10);
H A Dlong_namespace_xml.cpp36 char *ptr = (char *)malloc (4);
H A Dmalloc1_ks_alloc.stderr.exp6 at 0x........: malloc (vg_replace_malloc.c:...)
12 at 0x........: malloc (vg_replace_malloc.c:...)
H A Dmalloc1_ks_alloc_and_free.stderr.exp7 at 0x........: malloc (vg_replace_malloc.c:...)
13 at 0x........: malloc (vg_replace_malloc.c:...)
H A Dorigin3-no.c42 char* ptr_to_undef_char = malloc(sizeof(char));
62 int* ptr_to_undef_int = malloc(sizeof(int));
71 int* ptr_to_undef_int = malloc(sizeof(int) + 1);
80 int* ptr_to_undef_int3 = malloc(sizeof(int));
H A Dpdb-realloc.c16 char* x = malloc(1000);
H A Drealloc2.c14 p = malloc(10 + 10 * (i % 100));
H A Dstrchr.c11 s = malloc(sizeof(char));
/external/valgrind/main/memcheck/tests/darwin/
H A Dscalar_nocancel.c14 long* px = malloc(sizeof(long));
/external/webrtc/src/system_wrappers/source/
H A Daligned_malloc.cc21 #include <malloc/malloc.h>
23 #include <malloc.h>
71 returnValue->memoryPointer = malloc(size + sizeof(uintptr_t) +
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopj_malloc.h68 #define opj_malloc(size) ((size_t)(size) >= (size_t)-0x100 ? NULL : malloc(size))
70 #define opj_malloc(size) malloc(size)
98 /* Someone should tell the mingw people that their malloc.h ought to provide _mm_malloc() */
103 #include <malloc.h>
116 #include <malloc.h>
120 #define opj_aligned_malloc(size) malloc(size)
142 static INLINE void* __attribute__ ((malloc)) opj_aligned_malloc(size_t size){
186 #pragma GCC poison malloc calloc realloc free

Completed in 236 milliseconds

1234567891011>>