| /src/external/gpl3/binutils/dist/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
|
| /src/external/gpl3/binutils.old/dist/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
|
| /src/external/gpl3/gcc/dist/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
|
| /src/external/gpl3/gcc.old/dist/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
|
| /src/external/gpl3/gdb/dist/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
|
| /src/external/gpl3/gdb.old/dist/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
|
| /src/sys/arch/ia64/stand/common/ |
| calloc.c | 1 /* $NetBSD: calloc.c,v 1.2 2009/03/18 16:00:12 cegger Exp $ */ 9 calloc(u_int size1, u_int size2) function
|
| /src/external/gpl2/libmalloc/dist/ |
| calloc.c | 1 /* $NetBSD: calloc.c,v 1.1.1.1 2016/01/13 21:42:18 christos Exp $ */ 31 calloc (nmemb, size) function
|
| /src/external/bsd/ntp/dist/sntp/unity/ |
| unity_fixture_malloc_overrides.h | 14 #define calloc unity_calloc macro
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| win32_alloc.c | 35 #undef calloc macro 53 return calloc( elements, size);
|
| /src/external/bsd/tre/dist/lib/ |
| xmalloc.h | 54 #undef calloc macro 59 #define calloc USE_XCALLOC_INSTEAD_OF_CALLOC macro 68 #define xcalloc(nmemb, size) calloc(nmemb, size)
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| dbe_hwc.h | 32 #define calloc(n, s) xcalloc (n, s) macro
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| dbe_hwc.h | 32 #define calloc(n, s) xcalloc (n, s) macro
|
| /src/crypto/dist/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))
|
| /src/external/bsd/file/dist/src/ |
| memtest.c | 74 calloc(size_t len, size_t nitems) function 77 void *(*orig)(size_t, size_t) = dlsym(RTLD_NEXT, "calloc"); 80 int l = snprintf(buf, sizeof(buf), "calloc %zu %p\n", tot, p);
|
| /src/external/bsd/mdocml/dist/ |
| compat_ohash.h | 30 void *(*calloc)(size_t, size_t, void *); member in struct:ohash_info
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_malloc_linux.cpp | 73 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { 172 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugK 179 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugL 192 WRAP(malloc), WRAP(free), WRAP(calloc), 196 WRAP(calloc), WRAP(free), WRAP(mallinfo),
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_malloc_linux.cpp | 73 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { 172 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugK 179 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugL 192 WRAP(malloc), WRAP(free), WRAP(calloc), 196 WRAP(calloc), WRAP(free), WRAP(mallinfo),
|
| /src/external/gpl3/gdb/dist/libctf/testsuite/libctf-regression/ |
| open-error-free.c | 25 Extra complexity to deal with dlsym() calling dlerror() and thus calloc() -- 36 real_calloc = (void *(*) (size_t, size_t)) dlsym (RTLD_NEXT, "calloc"); 78 void *calloc (size_t nmemb, size_t size) function
|
| /src/external/gpl3/gdb.old/dist/libctf/testsuite/libctf-regression/ |
| open-error-free.c | 25 Extra complexity to deal with dlsym() calling dlerror() and thus calloc() -- 36 real_calloc = (void *(*) (size_t, size_t)) dlsym (RTLD_NEXT, "calloc"); 78 void *calloc (size_t nmemb, size_t size) function
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_malloc_win.cc | 84 void *calloc(size_t nmemb, size_t size) { function 91 return calloc(nmemb, size); 96 return calloc(nmemb, size); 101 return calloc(nmemb, size); 124 return calloc(n, elem_size); 233 TryToOverrideFunction("calloc", (uptr)calloc); 234 TryToOverrideFunction("_calloc_base", (uptr)calloc); 235 TryToOverrideFunction("_calloc_crt", (uptr)calloc);
|
| asan_malloc_linux.cc | 150 INTERCEPTOR(void*, calloc, uptr nmemb, uptr size) { 152 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym. 246 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugK 253 void *(*calloc)(uptr n_elements, uptr elem_size); member in struct:MallocDebugL 266 WRAP(malloc), WRAP(free), WRAP(calloc), 270 WRAP(calloc), WRAP(free), WRAP(mallinfo),
|
| /src/external/bsd/unbound/dist/util/ |
| alloc.h | 194 # define calloc(n,s) unbound_stat_calloc_lite(n, s, __FILE__, __LINE__, __func__) macro
|
| /src/external/lgpl2/userspace-rcu/dist/include/urcu/ |
| rculfhash.h | 76 void *(*calloc)(void *state, size_t nmemb, size_t size); member in struct:cds_lfht_alloc
|
| /src/lib/libbsdmalloc/ |
| malloc.c | 498 * - calloc(n,m) = malloc(n*m) without overflow 545 calloc(size_t nmemb, size_t size) function
|