Searched refs:malloc (Results 176 - 200 of 2881) sorted by relevance

1234567891011>>

/external/jpeg/
H A Djmemnobs.c11 * can be obtained from malloc().
23 #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
24 extern void * malloc JPP((size_t size));
31 * routines malloc() and free().
37 return (void *) malloc(sizeofobject);
57 return (void FAR *) malloc(sizeofobject);
/external/qemu/distrib/jpeg-6b/
H A Djmemnobs.c11 * can be obtained from malloc().
23 #ifndef HAVE_STDLIB_H /* <stdlib.h> should declare malloc(),free() */
24 extern void * malloc JPP((size_t size));
31 * routines malloc() and free().
37 return (void *) malloc(sizeofobject);
57 return (void FAR *) malloc(sizeofobject);
/external/valgrind/main/callgrind/tests/
H A Dsimwork.c54 a = (double*) malloc(SIZE * sizeof(double));
55 b = (double*) malloc(SIZE * sizeof(double));
56 c = (double*) malloc(SIZE * sizeof(double));
/external/clang/test/Analysis/
H A Dmalloc-interprocedural.c5 void *malloc(size_t);
17 *d = malloc(size);
22 data = malloc(size);
82 char *v = malloc(12);
96 int *x = (int*)malloc(12);
103 // If we inline any of the malloc-family functions, the checker shouldn't also
118 char *result = malloc(n + 1);
/external/valgrind/main/memcheck/tests/
H A Dexecve1.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
14 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dclo_redzone_128.stderr.exp5 at 0x........: malloc (vg_replace_malloc.c:...)
H A Ddw4.c23 char* undefp = malloc(1);
47 struct s1* onheap = malloc(sizeof (struct s1));
H A Dexecve2.stderr.exp4 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dpointer-trace.stderr.exp2 at 0x........: malloc (vg_replace_malloc.c:...)
H A Dsignal2.stderr.exp3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
H A Dstatic_malloc.stderr.exp2 at 0x........: malloc (vg_replace_malloc.c:...)
H A Dvarinfo1.c24 char* undefp = malloc(1);
47 char* onheap = malloc(3);
/external/valgrind/main/none/tests/amd64/
H A Dbug137714-amd64.c20 UChar* dst = malloc(8);
42 UChar* dst = malloc(16);
67 UChar* regL = malloc(8);
68 UChar* regR = malloc(8);
89 UChar* regL = malloc(16);
90 UChar* regR = malloc(16);
/external/valgrind/main/none/tests/x86/
H A Dbug137714-x86.c20 UChar* dst = malloc(8);
42 UChar* dst = malloc(16);
67 UChar* regL = malloc(8);
68 UChar* regR = malloc(8);
89 UChar* regL = malloc(16);
90 UChar* regR = malloc(16);
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dtsd_dtor_leak.cc14 pthread_setspecific(tsd_key, malloc(10));
21 v = malloc(10000);
/external/compiler-rt/test/asan/TestCases/
H A Dmemset_test.cc43 char * volatile p = (char *)malloc(3000);
51 char * volatile q = (char *)malloc(3000);
/external/oprofile/libutil/
H A Dop_libiberty.h21 #define OP_ATTRIB_MALLOC __attribute__((malloc))
40 /* Allocate memory without fail. If malloc fails, this will print a
46 realloc type functions are not suitable for attribute malloc since
67 #define xmalloc(s) malloc(s)
/external/valgrind/main/VEX/test/
H A Dfpspeed.c11 double* a1 = malloc(1000 * sizeof(double));
12 double* a2 = malloc(1000 * sizeof(double));
/external/chromium_org/third_party/webrtc/common_audio/resampler/
H A Dresampler.cc285 state1_ = malloc(8 * sizeof(int32_t));
289 state1_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
294 state1_ = malloc(8 * sizeof(int32_t));
297 state2_ = malloc(8 * sizeof(int32_t));
302 state1_ = malloc(8 * sizeof(int32_t));
305 state2_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
310 state1_ = malloc(8 * sizeof(int32_t));
313 state2_ = malloc(8 * sizeof(int32_t));
316 state3_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
322 state1_ = malloc(sizeo
[all...]
/external/webrtc/src/common_audio/resampler/
H A Dresampler.cc285 state1_ = malloc(8 * sizeof(WebRtc_Word32));
289 state1_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
294 state1_ = malloc(8 * sizeof(WebRtc_Word32));
297 state2_ = malloc(8 * sizeof(WebRtc_Word32));
302 state1_ = malloc(8 * sizeof(WebRtc_Word32));
305 state2_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
310 state1_ = malloc(8 * sizeof(WebRtc_Word32));
313 state2_ = malloc(8 * sizeof(WebRtc_Word32));
316 state3_ = malloc(sizeof(WebRtcSpl_State16khzTo48khz));
322 state1_ = malloc(sizeo
[all...]
/external/bison/lib/
H A Dstrndup.c29 char *new = malloc (len + 1);
/external/bison/m4/
H A Ddmalloc.m49 [AC_MSG_CHECKING([if malloc debugging is wanted])
16 [Define if using the dmalloc debugging malloc package])
/external/chromium_org/native_client_sdk/src/examples/tutorial/dlopen/
H A Dreverse.cc11 char* reversed = static_cast<char*>(malloc(len + 1));
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dgetcwd.c27 buf = (char*)malloc(size);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_memory_shared.cc19 void* MemAlloc(uint32_t num_bytes) { return malloc(num_bytes); }

Completed in 520 milliseconds

1234567891011>>