OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:malloc
(Results
76 - 100
of
2813
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/valgrind/main/memcheck/tests/
malloc1.c
16
char* p =
malloc
(10);
21
p =
malloc
(10);
malloc3.stderr.exp
1
Warning: silly arg (-1) to
malloc
()
memcmptest.c
11
s1 =
malloc
(10); strcpy(s1,"fooble");
12
s2 =
malloc
(10); strcpy(s2,"fooble");
big_blocks_freed_list.c
18
semi_big =
malloc
(900000);
19
big =
malloc
(1000001);
27
small =
malloc
(10000);
32
with the
malloc
of small above. */
39
big =
malloc
(1000001);
51
other_small =
malloc
(10000);
error_counts.c
43
leaked =
malloc
(77);
46
dubious =
malloc
(88);
49
reachable =
malloc
(99);
metadata.c
10
int* a =
malloc
(10 * sizeof(int));
11
int* b =
malloc
(10 * sizeof(int));
12
int* v =
malloc
(10 * sizeof(int));
accounting.c
14
p =
malloc
(1);
holey_buffer_too_small.c
19
a =
malloc
(8);
25
a =
malloc
(8);
31
a =
malloc
(8);
37
a =
malloc
(8);
/hardware/ti/omap4xxx/
tm.c
27
ptr[0] =
malloc
(10);
29
ptr[2] =
malloc
(30);
30
ptr[3] =
malloc
(40);
31
ptr[4] =
malloc
(50);
32
ptr[5] =
malloc
(60);
/external/clang/test/Sema/
implicit-builtin-decl.c
3
int *ptr =
malloc
(sizeof(int) * 10); // expected-warning{{implicitly declaring library function '
malloc
' with type}} \
4
// expected-note{{please include the header <stdlib.h> or explicitly provide a declaration for '
malloc
'}} \
5
// expected-note{{'
malloc
' is a builtin with type 'void *}}
14
void g(int
malloc
) { // okay: these aren't functions
19
int
malloc
(int); // expected-warning{{incompatible redeclaration of library function '
malloc
'}}
/external/valgrind/main/massif/tests/
ignored.c
8
int* ignored_x1 =
malloc
(400);
9
int* ignored_x2 =
malloc
(400);
31
x =
malloc
(400);
alloc-fns.c
3
void a4(int n) {
malloc
(n); }
8
void b4(int n) {
malloc
(n); }
13
void c4(int n) {
malloc
(n); }
18
void d4(int n) {
malloc
(n); }
overloaded-new.cpp
19
return
malloc
(n);
24
return
malloc
(n);
29
return
malloc
(n);
34
return
malloc
(n);
/abi/cpp/src/
new.cc
36
void* ptr =
malloc
(size);
/bionic/libc/bionic/
sched_cpualloc.c
34
return (cpu_set_t*)
malloc
(CPU_ALLOC_SIZE(count));
/external/clang/test/Analysis/
new.cpp
1
// RUN: %clang_cc1 -analyze -analyzer-checker=core,unix.
Malloc
,debug.ExprInspection -analyzer-store region -std=c++11 -verify %s
6
extern "C" void *
malloc
(size_t);
30
int *x = (int *)
malloc
(sizeof(int));
54
int *x = (int *)
malloc
(sizeof(int));
85
return new PtrWrapper(static_cast<int *>(
malloc
(4)));
/external/clang/test/CodeGen/
bounds-checking.c
17
short *b =
malloc
(64);
/external/compiler-rt/lib/asan/lit_tests/Linux/
interception_failure_test.cc
21
char *x = (char*)
malloc
(10 * sizeof(char));
/external/compiler-rt/lib/asan/lit_tests/
heap-overflow.cc
21
char *x = (char*)
malloc
(10 * sizeof(char));
29
// CHECK-Linux: {{ #0 0x.* in .*
malloc
}}
log-path_test.cc
31
char *x = (char*)
malloc
(10);
symbolize_callback.cc
13
char *x = (char*)
malloc
(10 * sizeof(char));
/external/compiler-rt/lib/msan/tests/
msan_loadable.cc
29
dso_global =
malloc
(4);
/external/compiler-rt/lib/tsan/lit_tests/
free_race2.c
13
int *mem = (int*)
malloc
(100);
/external/libgsm/src/
gsm_destroy.c
17
# include <
malloc
.h>
/external/skia/src/gpu/
GrMemory.cpp
15
void* ptr = ::
malloc
(bytes);
Completed in 593 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>