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

1 2

  /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/u-boot/common/
malloc_simple.c 54 void *calloc(size_t nmemb, size_t elem_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),
  /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 90 #define calloc(nbelem,size) curl_dbg_calloc(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/openssh/openbsd-compat/
getrrsetbyname-ldns.c 60 #define calloc(x, y) (xcalloc((x),(y))) macro
121 rrset = calloc(1, sizeof(struct rrsetinfo));
177 rrset->rri_rdatas = calloc(rrset->rri_nrdatas,
187 rrset->rri_sigs = calloc(rrset->rri_nsigs,
  /external/python/cpython3/Include/
pymem.h 72 calloc/free. For example, on Windows different DLLs may end up using
187 void* (*calloc) (void *ctx, size_t nelem, size_t elsize); member in struct:__anon37119
  /bionic/libc/bionic/
malloc_common.cpp 61 extern "C" void* calloc(size_t n_elements, size_t elem_size) { function
64 return dispatch_table->calloc(n_elements, elem_size);
66 void* result = Malloc(calloc)(n_elements, elem_size);
68 warning_log("calloc(%zu, %zu) failed: returning null pointer", n_elements, elem_size);
  /bionic/libc/private/
bionic_malloc_dispatch.h 59 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),
asan_malloc_win.cc 80 void *calloc(size_t nmemb, size_t size) { function
87 return calloc(nmemb, size);
92 return calloc(nmemb, size);
97 return calloc(nmemb, size);
120 return calloc(n, elem_size);
219 TryToOverrideFunction("calloc", (uptr)calloc);
220 TryToOverrideFunction("_calloc_base", (uptr)calloc);
221 TryToOverrideFunction("_calloc_crt", (uptr)calloc);

Completed in 2748 milliseconds

1 2