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

1 2

  /external/syslinux/com32/lib/
calloc.c 2 * calloc.c
10 void *calloc(size_t nmemb, size_t size) function
  /toolchain/binutils/binutils-2.27/libiberty/
calloc.c 0 /* calloc -- allocate memory which has been initialized to zero.
6 @deftypefn Supplemental void* calloc (size_t @var{nelem}, size_t @var{elsize})
23 calloc (size_t nelem, size_t elsize) function
  /external/compiler-rt/test/esan/TestCases/
workingset-early-fault.c 2 // faults during dlsym's calloc during interceptor init.
11 // Our goal is to emulate an instrumented allocator, whose calloc
14 // We do this by replacing calloc:
15 void *calloc(size_t size, size_t n) { function
23 // Now just emulate calloc.
  /external/syslinux/gpxe/src/include/
stdlib.h 43 static inline void * __malloc calloc ( size_t nmemb, size_t size ) { function
  /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),
  /external/syslinux/dos/
malloc.c 103 void *calloc(size_t nmemb, size_t size) function
  /bionic/linker/
linker_memory.cpp 75 void* calloc(size_t item_count, size_t item_size) { function
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
MyAlloc.c 22 #undef calloc macro
247 Tmp = calloc (
MyAlloc.h 39 #define calloc(count, size) MyAlloc ((count) * (size), __FILE__, __LINE__) macro
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
MyAlloc.c 29 #undef calloc macro
232 Tmp = calloc (
MyAlloc.h 46 #define calloc(count, size) MyAlloc ((count) * (size), __FILE__, __LINE__) macro
  /external/boringssl/src/crypto/test/
malloc.cc 123 void *calloc(size_t num_elems, size_t size) { function
  /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/curl/lib/
curl_memory.h 29 * that use memory related functions strdup, malloc, calloc, realloc
113 * libcurl's 'memory tracking' system defines strdup, malloc, calloc,
125 #undef calloc macro
126 #define calloc(nbelem,size) Curl_ccalloc(nbelem, size) macro
memdebug.h 95 #define calloc(nbelem,size) curl_docalloc(nbelem, size, __LINE__, __FILE__) 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))
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
Malloc.c 2 Definitions for memory allocation routines: calloc, malloc, realloc, free.
5 calloc, malloc, and realloc functions is unspecified. The pointer returned
62 // List of memory allocated by malloc/calloc/etc.
124 /** The calloc function allocates space for an array of Num objects, each of
139 calloc(size_t Num, size_t Size) function
152 DEBUG((DEBUG_POOL, "0x%p = calloc(%d, %d)\n", RetVal, Num, Size));
161 does not match a pointer earlier returned by the calloc, malloc, or realloc
201 If Ptr does not match a pointer earlier returned by the calloc, malloc, or
  /external/capstone/contrib/windows_kernel/
libc.cpp 63 __cdecl calloc(size_t n, size_t size) function
  /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/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc 90 void *calloc(size_t nmemb, size_t size) { function
  /external/python/cpython3/Include/
pymem.h 74 calloc/free. For example, on Windows different DLLs may end up using
183 void* (*calloc) (void *ctx, size_t nelem, size_t elsize); member in struct:__anon33183
  /bionic/libc/private/
bionic_malloc_dispatch.h 57 MallocCalloc calloc; member in struct:MallocDispatch
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
OnigurumaUefiPort.h 32 #define calloc(n,s) AllocateZeroPool((n)*(s)) macro
  /external/compiler-rt/lib/asan/
asan_malloc_linux.cc 68 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) {
70 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
156 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugK
163 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugL
176 WRAP(malloc), WRAP(free), WRAP(calloc),
180 WRAP(calloc), WRAP(free), WRAP(mallinfo),

Completed in 1565 milliseconds

1 2