Searched refs:calloc (Results 1 - 25 of 895) sorted by relevance

1234567891011>>

/external/clang/test/Sema/
H A Dimplicit-builtin-redecl.c9 void *calloc(int, int, int); // expected-warning{{incompatible redeclaration of library function 'calloc'}} \
10 // expected-note{{'calloc' is a builtin with type 'void *}}
13 calloc(0, 0, 0);
H A Dextern-redecl.c49 extern float *calloc(); // expected-warning {{incompatible redeclaration of library function}} expected-note {{is a builtin}} expected-note 2 {{previous declaration is here}}
53 int *calloc(); // expected-error {{conflicting types}}
58 int *calloc(); // expected-error {{conflicting types}}
63 float *(*_calloc)() = &calloc;
H A Dimplicit-builtin-decl.c12 int *calloc(__SIZE_TYPE__, __SIZE_TYPE__); // expected-warning{{incompatible redeclaration of library function 'calloc'}} \
13 // expected-note{{'calloc' is a builtin with type 'void *}}
17 int calloc = 1; local
/external/compiler-rt/test/asan/TestCases/Windows/
H A Dcalloc_left_oob.cc7 int *buffer = (int*)calloc(42, sizeof(int));
14 // CHECK-NEXT: {{#0 .* calloc }}
H A Dcalloc_right_oob.cc7 int *buffer = (int*)calloc(42, sizeof(int));
14 // CHECK-NEXT: {{#0 .* calloc }}
H A Dcalloc_uaf.cc7 int *buffer = (int*)calloc(42, sizeof(int));
18 // CHECK-NEXT: {{#0 .* calloc }}
/external/valgrind/memcheck/tests/
H A Dmalloc3.stdout.exp3 calloc(0,1) = 0x........
4 calloc(0,-1) = 0x........
5 calloc(-1,-1) = 0x........
H A Dmalloc3.c19 p = calloc(0,1);
20 printf("calloc(0,1) = 0x%lx\n", (unsigned long)p);
23 p = calloc(0,-1);
24 printf("calloc(0,-1) = 0x%lx\n", (unsigned long)p);
27 // We no longer get a warning with this due to the calloc overflow checking
30 p = calloc(-1,-1);
31 printf("calloc(-1,-1) = 0x%lx\n", (unsigned long)p);
H A Dpartial_load.c14 p = calloc( sizeof(long)-1, 1 );
20 p = calloc( sizeof(long), 1 );
28 p = calloc( sizeof(short)-1, 1 );
34 p = calloc( sizeof(long), 1 );
H A Dcalloc-overflow.c17 x = calloc(szB, 0x10);
H A Dinline.c17 int* a = calloc(10, sizeof(int));
H A Dmalloc3.stderr.exp5 Argument 'size' of function calloc has a fishy (possibly negative) value: -1
6 at 0x........: calloc (vg_replace_malloc.c:...)
/external/clang/test/Analysis/
H A Dmalloc-sizeof.cpp6 void *calloc(size_t nmemb, size_t size);
20 A *x = static_cast<A*>(calloc(10, sizeof(void*))); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'void *'}}
22 A **y = static_cast<A**>(calloc(10, sizeof(void*))); // no-warning
H A Dmalloc-sizeof.c6 void *calloc(size_t nmemb, size_t size);
22 struct A *ap1 = calloc(1, sizeof(struct A));
23 struct A *ap2 = calloc(2, sizeof(*ap1));
24 struct A *ap3 = calloc(2, sizeof(ap1)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
25 struct A *ap4 = calloc(3, sizeof(struct A*)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct A *'}}
26 struct A *ap5 = calloc(4, sizeof(struct B)); // expected-warning {{Result of 'calloc' is converted to a pointer of type 'struct A', which is incompatible with sizeof operand type 'struct B'}}
/external/bison/lib/
H A Dcalloc.c0 /* calloc() function that is glibc compatible.
21 /* Only the AC_FUNC_CALLOC macro defines 'calloc' already in config.h. */
22 #ifdef calloc
24 # undef calloc macro
25 /* Whereas the gnulib module 'calloc-gnu' defines HAVE_CALLOC_GNU. */
35 /* Call the system's calloc below. */
36 #undef calloc macro
54 /* Defend against buggy calloc implementations that mishandle
65 result = calloc (n, s);
/external/syslinux/com32/lib/
H A Dcalloc.c2 * calloc.c
10 void *calloc(size_t nmemb, size_t size) function
/external/compiler-rt/test/asan/TestCases/Linux/
H A Dcalloc-preload.c18 // so calloc will allocate memory from special pool.
20 ptr = calloc(10, 1);
/external/valgrind/none/tests/
H A Dtimestamp.c7 int* x = calloc(1,sizeof(int));
/external/compiler-rt/test/tsan/
H A Dmalloc_overflow.cc13 p = calloc((size_t)-1, (size_t)-1);
15 fprintf(stderr, "FAIL calloc(-1, -1) = %p\n", p);
16 p = calloc((size_t)-1 / 2, (size_t)-1 / 2);
18 fprintf(stderr, "FAIL calloc(-1/2, -1/2) = %p\n", p);
/external/valgrind/none/tests/darwin/
H A Dapple-main-arg.c14 char *pargv = calloc((PATH_MAX+1), sizeof(char)),
15 *pappl = calloc((PATH_MAX+1), sizeof(char));
/external/compiler-rt/test/esan/TestCases/
H A Dworkingset-early-fault.c2 // faults during dlsym's calloc during interceptor init.
11 // Our goal is to emulate an instrumented allocator, whose calloc
14 // We do this by replacing calloc:
15 void *calloc(size_t size, size_t n) { function
23 // Now just emulate calloc.
/external/elfutils/libdwfl/
H A Ddwfl_begin.c40 Dwfl *dwfl = calloc (1, sizeof *dwfl);
/external/libdrm/tests/kms/
H A Dlibkms-test-crtc.c34 crtc = calloc(1, sizeof(*crtc));
/external/syslinux/dos/
H A Dstdlib.h17 void *calloc(size_t, size_t);
/external/compiler-rt/lib/asan/
H A Dasan_malloc_win.cc80 void *calloc(size_t nmemb, size_t size) { function
87 return calloc(nmemb, size);
92 return calloc(nmemb, size);
97 return calloc(nmemb, size);
120 return calloc(n, elem_size);
219 TryToOverrideFunction("calloc", (uptr)calloc);
220 TryToOverrideFunction("_calloc_base", (uptr)calloc);
221 TryToOverrideFunction("_calloc_crt", (uptr)calloc);

Completed in 552 milliseconds

1234567891011>>