/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);
|
/external/cmockery/cmockery_0_1_2/src/example/ |
allocate_module.c | 25 #define calloc(num, size) _test_calloc(num, size, __FILE__, __LINE__) macro
|
calculator.c | 54 /* 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),
|
/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/omap4-aah/domx/omx_core/inc/ |
OMX_DebugMem.h | 59 #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 | 12 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/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/compiler-rt/lib/asan/ |
asan_malloc_linux.cc | 29 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.
|
asan_malloc_win.cc | 62 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/libunwind/tests/ |
Ltest-nocalloc.c | 41 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/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_org/base/allocator/ |
generic_allocators.cc | 74 void* calloc(size_t n, size_t elem_size) { function 94 return calloc(n, elem_size); 109 return calloc(n, size); 115 #undef calloc macro 169 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...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/ |
vpx_mem.h | 113 # define calloc vpx_calloc macro
|
/external/libvpx/libvpx/vpx_mem/ |
vpx_mem.h | 110 # define calloc vpx_calloc macro
|
/external/valgrind/main/coregrind/m_gdbserver/ |
server.h | 160 #define calloc(n,sz) VG_(arena_calloc) (VG_AR_CORE, "gdbsrv", n, sz) macro
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vpx_mem/ |
vpx_mem.h | 110 # define calloc vpx_calloc macro
|
/prebuilts/misc/common/swig/include/2.0.11/perl5/ |
noembed.h | 79 #ifdef calloc 80 #undef calloc macro
|
/bionic/libc/bionic/ |
malloc_debug_common.cpp | 67 Malloc(calloc), 246 extern "C" void* calloc(size_t n_elements, size_t elem_size) { function 247 return __libc_malloc_dispatch->calloc(n_elements, elem_size); 312 InitMallocFunction<MallocDebugCalloc>(malloc_impl_handler, &table->calloc, prefix, "calloc"); 464 if ((malloc_dispatch_table.calloc == NULL) ||
|
malloc_debug_common.h | 92 MallocDebugCalloc calloc; member in struct:MallocDebug
|