/external/bison/lib/ |
calloc.c | 0 /* 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);
|
/hardware/ti/omap3/omx/system/src/openmax_il/omx_core/inc/ |
OMX_DebugMem.h | 35 #define calloc(n,s) OMX_DebugMem_calloc(n,s,__FILE__,__FUNCTION__,__LINE__) macro
|
/hardware/ti/omap4xxx/domx/omx_core/inc/ |
OMX_DebugMem.h | 59 #define calloc(n,s) OMX_DebugMem_calloc(n,s,__FILE__,__FUNCTION__,__LINE__) macro
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
prwin16.h | 106 void * (PR_CALLBACK *calloc)(size_t n, size_t size ); member in struct:PRMethodCallbackStr
|
/external/clang/test/Sema/ |
implicit-builtin-decl.c | 10 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/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 28 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.
|
asan_malloc_win.cc | 57 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/ipsec-tools/src/racoon/ |
gcmalloc.h | 46 * 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/chromium_org/third_party/tcmalloc/chromium/src/windows/ |
override_functions.cc | 61 return calloc(n, size); 92 #undef calloc macro 114 return calloc(n, size);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/ |
override_functions.cc | 61 return calloc(n, size); 92 #undef calloc macro 114 return calloc(n, size);
|
/external/skia/bench/ |
MemoryBench.cpp | 59 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/chromium/base/allocator/ |
generic_allocators.cc | 66 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/base/allocator/ |
generic_allocators.cc | 66 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/ |
sanitizer_allocator_testlib.cc | 88 void *calloc(size_t nmemb, size_t size) { function
|
/external/srec/portable/include/ |
pmemory.h | 65 #define CALLOC(m, n, tag) calloc(m, n) 66 #define CALLOC_CLR(m, n, tag) calloc(m, n) 70 #define NEW_ARRAY(type, n, tag) ((type*)CALLOC(n, sizeof(type), tag)) 86 #define calloc #error macro 111 * Portable calloc() 113 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize , tag, L(__FILE__), __LINE__)) 117 * Portable calloc() 119 #define CALLOC(nbElem, elemSize, tag) (pcalloc(nbElem, elemSize)) 143 #define NEW_ARRAY(type, nbElem, tag) ((type *) CALLOC(nbElem, sizeof(type), tag) [all...] |
/bionic/libc/bionic/ |
malloc_debug_common.h | 83 MallocDebugCalloc calloc; member in struct:MallocDebug
|
malloc_debug_common.cpp | 230 extern "C" void* calloc(size_t n_elements, size_t elem_size) { function 231 return __libc_malloc_dispatch->calloc(n_elements, elem_size); 311 InitMallocFunction<MallocDebugCalloc>(malloc_impl_handler, &table->calloc, prefix, "calloc"); 468 (gMallocUse.calloc == NULL) ||
|
/external/libvpx/libvpx/vpx_mem/ |
vpx_mem.h | 110 # define calloc vpx_calloc macro
|
/external/valgrind/main/coregrind/m_gdbserver/ |
server.h | 155 #define calloc(n,sz) VG_(arena_calloc) (VG_AR_CORE, "gdbsrv", n, sz) macro
|
/external/bison/darwin-lib/ |
stdlib.h | 488 # 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 is not POSIX compliant everywhere - [all...] |
/external/bison/linux-lib/ |
stdlib.h | 488 # 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 is not POSIX compliant everywhere - [all...] |
/external/srec/portable/src/ |
pmalloc.c | 35 #undef calloc macro
|
pmemfixed.c | 26 #undef calloc macro
|
pmemory.c | 35 #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/ |
mc_malloc_wrappers.c | 244 "Warning: silly args (%ld,%ld) to calloc()\n", 336 void* MC_(calloc) ( ThreadId tid, SizeT nmemb, SizeT size1 ) function
|