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

1 2 3 45 6 7 8 91011>>

  /external/compiler-rt/test/lsan/TestCases/
use_globals_uninitialized.cc 14 bss_var = malloc(1337);
use_stacks.cc 12 void *stack_var = malloc(1337);
use_tls_static.cc 14 tls_var = malloc(1337);
  /external/compiler-rt/test/msan/
check_mem_is_initialized.cc 23 int *volatile p = (int *)malloc(sizeof(int));
30 // CHECK-ORIGINS: {{#0 0x.* in .*malloc}}
keep-going.cc 27 char *volatile x = (char*)malloc(5 * sizeof(char));
use-after-free.cc 21 int *volatile p = (int *)malloc(sizeof(int));
  /external/compiler-rt/test/scudo/
quarantine.cpp 8 #include <malloc.h>
18 p = malloc(size);
23 p = malloc(size);
33 p = malloc(size);
  /external/mesa3d/include/
c99_alloca.h 34 # include <malloc.h>
  /external/python/cpython2/Python/
strdup.c 9 register char *copy = malloc(strlen(str) + 1);
  /external/python/cpython3/Python/
strdup.c 9 char *copy = malloc(strlen(str) + 1);
  /external/valgrind/memcheck/tests/
badaddrvalue.c 7 char* aa = malloc(8);
doublefree.c 8 void* p = malloc(177);
malloc3.stdout.exp 0 malloc(0) = 0x........
2 malloc(-1) = 0x........
manuel2.c 7 int *m = malloc(sizeof(int));
pipe.c 11 int *filedes = malloc(2 * sizeof(int));
trivialleak.c 8 leak = (void*)malloc( 1 );
wrapmalloc.c 4 /* Test that a program that has malloc/free interposed in a shared
10 void *p = malloc (1024);
wrapmallocso.c 4 /* Fake malloc/free functions that just print something. When run
8 void *malloc ( size_t size ) function
10 printf ("malloc\n");
  /external/valgrind/memcheck/tests/solaris/
scalar_frealpathat.c 8 long *px = malloc(sizeof(long));
scalar_getrandom.c 8 long *px = malloc(sizeof(long));
scalar_lwp_kill.c 11 long *px = malloc(sizeof(long));
scalar_uuidsys.c 8 long *px = malloc(sizeof(long));
  /external/valgrind/memcheck/tests/x86/
espindola2.c 11 int* x = malloc(4);
  /external/valgrind/memcheck/tests/x86-linux/
scalar_exit_group.c 6 long* px = malloc(sizeof(long));
  /external/clang/test/Analysis/
malloc.c 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,alpha.deadcode.UnreachableCode,alpha.core.CastSize,unix.Malloc,debug.ExprInspection -analyzer-store=region -verify %s
23 void *malloc(size_t);
45 int *p = malloc(12);
50 int *p = malloc(12);
56 int *p = malloc(12);
62 int *p = malloc(12);
68 char *p = (char*)malloc(size);
88 int *q = malloc(12);
95 char *p = malloc(12);
105 char *p = malloc(12)
    [all...]

Completed in 371 milliseconds

1 2 3 45 6 7 8 91011>>