Searched defs:calloc (Results 1 - 25 of 33) sorted by last modified time

12

/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h160 #define calloc(n,sz) VG_(arena_calloc) (VG_AR_CORE, "gdbsrv", n, sz) macro
/external/valgrind/main/coregrind/
H A Dm_mallocfree.c2379 void* VG_(calloc) ( const HChar* cc, SizeT nmemb, SizeT bytes_per_memb ) function
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c358 "Warning: silly args (%ld,%ld) to calloc()\n",
447 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 ) function
/external/srec/portable/include/
H A Dpmemory.h65 #define CALLOC(m, n, tag) calloc(m, n)
66 #define CALLOC_CLR(m, n, tag) calloc(m, n)
86 #define calloc #error macro
111 * Portable calloc()
117 * Portable calloc()
182 * Allocate an array of items, similar to calloc.
/external/srec/portable/src/
H A Dpmalloc.c35 #undef calloc macro
H A Dpmemfixed.c26 #undef calloc macro
H A Dpmemory.c35 #undef calloc macro
726 If ptr does not match a pointer returned earlier by calloc(), malloc() or realloc() or if the space has previously been deallocated by a call to free() or realloc(), the behaviour is undefined.
/external/skia/bench/
H A DMemoryBench.cpp59 static int* calloc(size_t num) { function
82 fName.printf("memory_%s", useCalloc ? "calloc" : "malloc_bzero");
104 int* zeros = fUseCalloc ? calloc(fNum) : malloc_bzero(fNum);
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_malloc.c189 a size_t, not counting any clearing in calloc or copying in realloc,
369 True if mmap clears memory so calloc doesn't need to. This is true
615 #define calloc SDL_calloc macro
686 #define dlcalloc calloc
731 calloc(size_t n_elements, size_t element_size);
856 independent_calloc is similar to calloc, but instead of returning a
879 should instead use regular calloc and assign pointers into this
1106 mspace_calloc behaves as calloc, but operates within
5031 * Malloc, calloc, getpagesize: add optimizations from Raymond Nijssen
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h159 /// void *calloc(size_t count, size_t size);
160 calloc, enumerator in enum:llvm::LibFunc::Func
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h110 # define calloc vpx_calloc macro
/external/libunwind/tests/
H A DLtest-nocalloc.c41 calloc(size_t n, size_t s) function
46 /* In glibc, dlsym() calls calloc. Calling dlsym(RTLD_NEXT, "calloc") here
54 func = dlsym(RTLD_NEXT, "calloc");
116 and check that it doesn't call malloc()/calloc(). */
131 "FAILURE: detected %d error%s (malloc: %d, calloc: %d)\n",
/external/jemalloc/include/jemalloc/
H A Djemalloc.h176 # define calloc je_calloc macro
H A Djemalloc_mangle.h15 # define calloc je_calloc macro
H A Djemalloc_mangle_jet.h15 # define calloc jet_calloc macro
/external/ipsec-tools/src/racoon/
H A Dgcmalloc.h46 * malloc(), calloc(), realloc(), and free() entry points in the main
62 calloc(size_t number, size_t size) function
114 #define racoon_calloc(cnt, sz) calloc((cnt), (sz))
/external/cmockery/cmockery_0_1_2/src/example/
H A Dallocate_module.c25 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) macro
H A Dcalculator.c54 /* Redirect calloc and free to test_calloc() and test_free() so cmockery can
56 #ifdef calloc
57 #undef calloc macro
58 #endif // calloc
59 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) macro
187 *intermediate_values = calloc(((number_of_arguments - 1) / 2),
/external/cmockery/cmockery_0_1_2/src/google/
H A Dcmockery.h241 // Redirect malloc, calloc and free to the unit test allocators.
244 #define calloc test_calloc macro
/external/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc29 DECLARE_REAL_AND_INTERCEPTOR(void*, calloc, uptr nmemb, uptr size)
37 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebug
44 WRAP(malloc), WRAP(free), WRAP(calloc),
83 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
85 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
H A Dasan_malloc_win.cc62 void *calloc(size_t nmemb, size_t size) { function
69 return calloc(n, size);
74 return calloc(nmemb, size);
92 return calloc(n, elem_size);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc88 void *calloc(size_t nmemb, size_t size) { function
/external/clang/test/Sema/
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/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/
H A Dvpx_mem.h113 # define calloc vpx_calloc macro
/external/chromium_org/tools/android/heap_profiler/
H A Dheap_profiler_hooks_android.c59 real_calloc = (calloc_t) dlsym(RTLD_NEXT, "calloc");
159 HEAP_PROFILER_EXPORT void* calloc(size_t nmemb, size_t size) { function

Completed in 3783 milliseconds

12