HomeSort by relevance Sort by last modified time
    Searched defs:calloc (Results 1 - 25 of 30) sorted by null

1 2

  /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/webkit/Source/JavaScriptCore/wtf/brew/
SystemMallocBrew.h 61 #define calloc(n, s) callocBrew(n, s) macro
  /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/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 27 DECLARE_REAL_AND_INTERCEPTOR(void*, calloc, uptr nmemb, uptr size)
34 void* (*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebug
40 WRAP(malloc), WRAP(free), WRAP(calloc), WRAP(realloc), WRAP(memalign)
77 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
79 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
asan_malloc_win.cc 55 void *calloc(size_t nmemb, size_t size) { function
61 return calloc(n, size);
65 return calloc(nmemb, size);
80 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/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/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 77 MallocDebugCalloc calloc; member in struct:MallocDebug
malloc_debug_common.cpp 233 extern "C" void* calloc(size_t n_elements, size_t elem_size) { function
234 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
318 table->calloc = reinterpret_cast<MallocDebugCalloc>(dlsym(libc_malloc_impl_handle, symbol));
319 if (table->calloc == NULL) {
486 (gMallocUse.calloc == NULL) ||
  /external/valgrind/main/coregrind/m_gdbserver/
server.h 155 #define calloc(n,sz) VG_(arena_calloc) (VG_AR_CORE, "gdbsrv", n, sz) macro
  /external/webkit/Source/JavaScriptCore/wtf/wince/
FastMallocWinCE.h 53 #define calloc(n_elements, element_size) fastCalloc(n_elements, element_size) macro
MemoryManager.cpp 24 #undef calloc macro
69 return calloc(num, size);
116 void *fastCalloc(size_t n_elements, size_t element_size) { return calloc(n_elements, element_size); }
  /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/libvpx/libvpx/vpx_mem/
vpx_mem.h 116 # define calloc vpx_calloc macro
  /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
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
system.h 442 extern void *calloc (size_t, size_t);
701 #define really_call_calloc calloc
718 #undef calloc macro
720 #pragma GCC poison calloc strdup
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
system.h 442 extern void *calloc (size_t, size_t);
701 #define really_call_calloc calloc
718 #undef calloc macro
720 #pragma GCC poison calloc strdup

Completed in 1034 milliseconds

1 2