HomeSort by relevance Sort by last modified time
    Searched refs:malloc (Results 126 - 150 of 2813) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
signal2.stderr.exp 3 Address 0x........ is not stack'd, malloc'd or (recently) free'd
static_malloc.stderr.exp 2 at 0x........: malloc (vg_replace_malloc.c:...)
varinfo1.c 24 char* undefp = malloc(1);
47 char* onheap = malloc(3);
badpoll.c 12 struct pollfd* ufds = malloc(2 * sizeof(struct pollfd) - 1);
badrw.c 5 void* x = malloc(10);
  /external/webkit/Tools/android/flex-2.5.4a/MISC/Macintosh/
xmalloc.c 1 /* xmalloc.c -- malloc with out of memory checking
21 char *malloc ();
40 p = malloc (n);
  /external/webrtc/src/common_audio/resampler/
resampler.cc 285 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(sizeof(WebRtcSpl_State16khzTo48khz))
    [all...]
  /bionic/libc/bionic/
strndup.c 38 copy = malloc(n+1);
  /bionic/libc/string/
strdup.c 45 if ((copy = malloc(siz)) == NULL)
  /bionic/libc/upstream-freebsd/lib/libc/string/
wcsdup.c 40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
  /external/bison/lib/
strndup.c 29 char *new = malloc (len + 1);
  /external/bison/m4/
dmalloc.m4 9 [AC_MSG_CHECKING([if malloc debugging is wanted])
16 [Define if using the dmalloc debugging malloc package])
  /external/clang/test/CodeGen/
blockstret.c 12 void *malloc(__SIZE_TYPE__ size);
19 BigStruct_t (^global)(void) = ^{ return *(BigStruct_t *)malloc(sizeof(struct bigbig)); };
26 BigStruct_t *result = malloc(sizeof(BigStruct_t));
88 BigStruct_t *result = (BigStruct_t *)malloc(sizeof(BigStruct_t));
  /external/compiler-rt/SDKs/linux/usr/include/
stdlib.h 30 void *malloc(size_t) __attribute__((__nothrow__)) __attribute((__malloc__))
  /external/compiler-rt/lib/asan/lit_tests/Linux/
interception_test.cc 21 char *x = (char*)malloc(10 * sizeof(char));
rlimit_mmap_test.cc 13 x = malloc(10000000);
  /external/compiler-rt/lib/asan/lit_tests/
deep_stack_uaf.cc 28 char *x = (char*)malloc(10);
  /external/compiler-rt/lib/tsan/lit_tests/
java_race.cc 11 void *jheap = malloc(kHeapSize);
signal_malloc.cc 10 // CHECK: #0 malloc
13 volatile char *p = (char*)malloc(1);
  /external/flac/include/share/
alloc.h 22 // 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/tcpdump/missing/
datalinks.c 62 *dlt_buffer = (int*)malloc(sizeof(**dlt_buffer));
strdup.c 53 if ((copy = malloc(len)) == NULL)
  /external/valgrind/main/VEX/test/
fstenv.c 13 unsigned int* buf = malloc(7*sizeof(int));
  /external/valgrind/main/massif/tests/
basic.c 14 a[i] = malloc(400); // 400 is divisible by 16 -- so no slop.
malloc_usable.c 2 #include "tests/malloc.h"
11 int* x = malloc(99);

Completed in 1043 milliseconds

1 2 3 4 56 7 8 91011>>