HomeSort by relevance Sort by last modified time
    Searched refs:malloc (Results 201 - 225 of 5328) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/valgrind/memcheck/tests/
holey_buffer_too_small.c 19 a = malloc(8);
25 a = malloc(8);
31 a = malloc(8);
37 a = malloc(8);
leak-0.c 16 foo = malloc(0);
malloc_usable.c 2 #include "tests/malloc.h"
11 int* x = malloc(99);
manuel3.c 10 x = (int *) malloc (sizeof (int));
realloc1.c 13 char* p = malloc(1);
malloc3.c 2 /* test of plausible behaviour with malloc and stupid args */
11 p = malloc(0);
12 printf("malloc(0) = 0x%lx\n", (unsigned long)p);
15 p = malloc(-1);
16 printf("malloc(-1) = 0x%lx\n", (unsigned long)p);
  /external/valgrind/memcheck/tests/solaris/
scalar_lwp_sigqueue.c 10 long *px = malloc(sizeof(long));
scalar_lwp_sigqueue_pid.c 10 long *px = malloc(sizeof(long));
scalar_system_stats.c 9 long *px = malloc(sizeof(long));
  /external/valgrind/memcheck/tests/x86/
fpeflags.c 14 myInstance = malloc(sizeof(struct instance));
pushpopmem.c 8 unsigned int* y = malloc(sizeof(unsigned int));
9 unsigned int* z = malloc(sizeof(unsigned int));
33 unsigned short* y = malloc(sizeof(unsigned short));
34 unsigned short* z = malloc(sizeof(unsigned short));
  /external/valgrind/none/tests/
bitfield1.c 14 Fooble* f = malloc(sizeof(Fooble));
  /external/vboot_reference/firmware/stub/
vboot_api_stub_static_sf.c 17 void *p = malloc(size);
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-plugin/
lto-12a.c 10 char *p = malloc (n);
  /external/clang/test/Analysis/
no-outofbounds.c 23 void *malloc(size_t);
28 struct vec *a = malloc(sizeof(struct vec) + 10*sizeof(int));
  /external/compiler-rt/test/asan/TestCases/
invalid-pointer-pairs.cc 38 char *p = (char *)malloc(42);
39 char *q = (char *)malloc(42);
strcasestr_strict.c 16 char *s1 = (char*)malloc(size);
17 char *s2 = (char*)malloc(size);
strcmp_strict.c 13 char *s1 = (char*)malloc(size);
15 char *s2 = (char*)malloc(size);
strcspn_strict.c 13 char *s1 = (char*)malloc(size);
14 char *s2 = (char*)malloc(size);
strpbrk_strict.c 13 char *s1 = (char*)malloc(size);
14 char *s2 = (char*)malloc(2);
strspn_strict.c 13 char *s1 = (char*)malloc(size);
14 char *s2 = (char*)malloc(2);
strstr_strict.c 13 char *s1 = (char*)malloc(size);
14 char *s2 = (char*)malloc(size);
  /external/compiler-rt/test/scudo/
mismatch.cpp 15 #include <malloc.h>
21 int *p = (int *)malloc(16);
  /external/compiler-rt/test/tsan/
malloc_overflow.cc 7 void *p = malloc((size_t)-1);
9 fprintf(stderr, "FAIL malloc(-1) = %p\n", p);
10 p = malloc((size_t)-1 / 2);
12 fprintf(stderr, "FAIL malloc(-1/2) = %p\n", p);
  /external/syslinux/lzo/include/lzo/
lzoutil.h 46 #define lzo_alloc(a,b) (malloc((a)*(b)))
47 #define lzo_malloc(a) (malloc(a))

Completed in 250 milliseconds

1 2 3 4 5 6 7 891011>>