Searched defs:calloc (Results 1 - 25 of 26) sorted by relevance

12

/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/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprwin16.h106 void * (PR_CALLBACK *calloc)(size_t n, size_t size ); member in struct:PRMethodCallbackStr
/external/clang/test/Sema/
H A Dimplicit-builtin-decl.c10 int *calloc(__SIZE_TYPE__, __SIZE_TYPE__); // expected-warning{{incompatible redeclaration of library function 'calloc'}} \
11 // expected-note{{'calloc' is a builtin with type 'void *}}
15 int calloc = 1; local
/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/compiler-rt/lib/asan/
H A Dasan_malloc_linux.cc28 DECLARE_REAL_AND_INTERCEPTOR(void*, calloc, uptr nmemb, uptr size)
35 void* (*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebug
41 WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
78 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
80 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
H A Dasan_malloc_win.cc57 void *calloc(size_t nmemb, size_t size) { function
63 return calloc(n, size);
67 return calloc(nmemb, size);
82 return calloc(n, elem_size);
/external/chromium/base/allocator/
H A Dgeneric_allocators.cc66 void* calloc(size_t n, size_t elem_size) __THROW {
86 return calloc(n, elem_size);
101 return calloc(n, size);
107 #undef calloc macro
130 return calloc(n, size);
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Doverride_functions.cc61 return calloc(n, size);
92 #undef calloc macro
114 return calloc(n, size);
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Doverride_functions.cc61 return calloc(n, size);
92 #undef calloc macro
114 return calloc(n, size);
/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/chromium_org/base/allocator/
H A Dgeneric_allocators.cc66 void* calloc(size_t n, size_t elem_size) __THROW {
86 return calloc(n, elem_size);
101 return calloc(n, size);
107 #undef calloc macro
161 return calloc(n, size);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc88 void *calloc(size_t nmemb, size_t size) { function
/external/libvpx/libvpx/vpx_mem/
H A Dvpx_mem.h110 # define calloc vpx_calloc macro
/external/valgrind/main/coregrind/m_gdbserver/
H A Dserver.h155 #define calloc(n,sz) VG_(arena_calloc) (VG_AR_CORE, "gdbsrv", n, sz) macro
/external/bison/darwin-lib/
H A Dstdlib.h488 # undef calloc
489 # define calloc rpl_calloc
491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
496 _GL_CXXALIASWARN (calloc); variable
498 # undef calloc macro
499 /* Assume calloc is always declared. */
500 _GL_WARN_ON_USE (calloc, "calloc i
[all...]
/external/bison/linux-lib/
H A Dstdlib.h488 # undef calloc
489 # define calloc rpl_calloc
491 _GL_FUNCDECL_RPL (calloc, void *, (size_t nmemb, size_t size));
492 _GL_CXXALIAS_RPL (calloc, void *, (size_t nmemb, size_t size));
494 _GL_CXXALIAS_SYS (calloc, void *, (size_t nmemb, size_t size));
496 _GL_CXXALIASWARN (calloc); variable
498 # undef calloc macro
499 /* Assume calloc is always declared. */
500 _GL_WARN_ON_USE (calloc, "calloc i
[all...]
/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/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c244 "Warning: silly args (%ld,%ld) to calloc()\n",
336 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 ) function
/external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
H A Dimplement.h684 #define calloc(n, s) ptw32_calloc(n, s) macro
/external/valgrind/main/coregrind/
H A Dm_mallocfree.c2234 void* VG_(calloc) ( HChar* cc, SizeT nmemb, SizeT bytes_per_memb ) function
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h136 /// void *calloc(size_t count, size_t size);
137 calloc, enumerator in enum:llvm::LibFunc::Func
/external/chromium_org/third_party/jemalloc/chromium/
H A Djemalloc.c6146 #define calloc(a, b) je_calloc(a, b) macro
6279 calloc(size_t num, size_t size) function
6321 ": (malloc) Error in calloc(): out of memory\n", "",
7000 * use calloc(), followed by recalloc(). However, the current calloc()
7002 * to work 100% correctly, calloc() will need to change to zero
7124 return (calloc(num, size));
7203 zone.calloc = (void *)zone_calloc;
/external/chromium_org/third_party/jemalloc/vendor/
H A Djemalloc.c6131 #define calloc(a, b) moz_calloc(a, b) macro
6261 calloc(size_t num, size_t size) function
6303 ": (malloc) Error in calloc(): out of memory\n", "",
6982 * use calloc(), followed by recalloc(). However, the current calloc()
6984 * to work 100% correctly, calloc() will need to change to zero
7107 return (calloc(num, size));
7186 zone.calloc = (void *)zone_calloc;

Completed in 654 milliseconds

12