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

  /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
  /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))
  /bionic/libc/bionic/
malloc_debug_common.h 77 /* Address of the actual calloc routine. */
78 void* (*calloc)(size_t n_elements, size_t elem_size); member in struct:MallocDebug
malloc_debug_common.c 226 void* calloc(size_t n_elements, size_t elem_size) { function
227 return __libc_malloc_dispatch->calloc(n_elements, elem_size);
405 gMallocUse.calloc =
420 gMallocUse.calloc = dlcalloc;
434 gMallocUse.calloc =
449 gMallocUse.calloc =
463 (gMallocUse.calloc == NULL) ||
470 gMallocUse.calloc, gMallocUse.realloc,
  /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/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/bluetooth/glib/glib/
gmem.h 90 gpointer (*calloc) (gsize n_blocks, member in struct:_GMemVTable
  /external/webkit/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/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.
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
system.h 406 extern void *calloc (size_t, size_t);
629 #define really_call_calloc calloc
646 #undef calloc macro
648 #pragma GCC poison calloc strdup
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
system.h 406 extern void *calloc (size_t, size_t);
629 #define really_call_calloc calloc
646 #undef calloc macro
648 #pragma GCC poison calloc strdup
  /external/qemu/distrib/sdl-1.2.12/src/stdlib/
SDL_malloc.c 189 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);
    [all...]

Completed in 866 milliseconds