| /src/external/bsd/flex/dist/lib/ |
| malloc.c | 2 #undef malloc macro 6 void *malloc (); 16 return malloc (n);
|
| realloc.c | 3 #undef malloc macro 20 result = malloc (n);
|
| /src/external/bsd/nsd/dist/compat/ |
| malloc.c | 1 /* Just a replacement, if the original malloc is not 7 #undef malloc macro 11 void *malloc (); 21 return malloc (n);
|
| /src/external/bsd/unbound/dist/compat/ |
| malloc.c | 1 /* Just a replacement, if the original malloc is not 5 #undef malloc macro 9 void *malloc (size_t n); 19 return malloc (n);
|
| /src/external/gpl2/diffutils/dist/lib/ |
| malloc.c | 1 /* $NetBSD: malloc.c,v 1.1.1.1 2016/01/13 03:15:30 christos Exp $ */ 3 /* Work around bug on some systems where malloc (0) fails. 25 #undef malloc macro 29 char *malloc (); 39 return malloc (n);
|
| /src/external/gpl2/xcvs/dist/lib/ |
| malloc.c | 0 /* malloc() function that is glibc compatible. 18 __RCSID("$NetBSD: malloc.c,v 1.2 2016/05/17 14:00:09 christos Exp $"); 26 #undef malloc macro 38 return malloc (n);
|
| /src/sys/external/isc/libsodium/include/ |
| stdlib.h | 2 #include <sys/malloc.h> 3 #undef malloc macro 5 #define malloc(size) __malloc_should_not_be_used macro
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.base/ |
| print-internal-string.c | 21 /* A memory area used as the malloc memory buffer. */ 25 /* Override malloc(). When GDB tries to push strings into the inferior we 28 simple test. On each malloc call the contents of arena are reset, which 33 malloc (size_t size) function
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/ |
| print-internal-string.c | 21 /* A memory area used as the malloc memory buffer. */ 25 /* Override malloc(). When GDB tries to push strings into the inferior we 28 simple test. On each malloc call the contents of arena are reset, which 33 malloc (size_t size) function
|
| /src/external/bsd/ntp/dist/sntp/unity/ |
| unity_fixture_malloc_overrides.h | 13 #define malloc unity_malloc macro
|
| /src/sys/sys/ |
| malloc.h | 1 /* $NetBSD: malloc.h,v 1.117 2018/10/14 17:37:40 jdolecek Exp $ */ 31 * @(#)malloc.h 8.5 (Berkeley) 5/3/95 40 * flags to malloc 49 * The following are standard, built-in malloc types that are 52 * They are currently not defined, but are still passed to malloc() 70 #define malloc(size, type, flags) kern_malloc(size, flags) macro
|
| /src/sys/arch/ia64/stand/ia64/ski/ |
| main.c | 63 static char malloc[512*1024]; local 71 setheap((void *)malloc, (void *)(malloc + 512*1024));
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| win32_alloc.c | 36 #undef malloc macro 65 return malloc( size);
|
| /src/external/bsd/tre/dist/lib/ |
| xmalloc.h | 2 xmalloc.h - Simple malloc debugging library API 53 #undef malloc macro 58 #define malloc USE_XMALLOC_INSTEAD_OF_MALLOC macro 67 #define xmalloc(size) malloc(size)
|
| /src/external/gpl3/binutils/dist/gprofng/src/ |
| dbe_hwc.h | 30 #define malloc(s) xmalloc (s) macro
|
| /src/external/gpl3/binutils.old/dist/gprofng/src/ |
| dbe_hwc.h | 30 #define malloc(s) xmalloc (s) macro
|
| /src/external/gpl3/gcc/dist/libbacktrace/ |
| instrumented_alloc.c | 34 processed when including alloc.c below, such that the redefinitions of malloc 52 #define malloc instrumented_malloc macro 55 #undef malloc macro 73 res = malloc (size);
|
| /src/external/gpl3/gcc.old/dist/libbacktrace/ |
| instrumented_alloc.c | 34 processed when including alloc.c below, such that the redefinitions of malloc 52 #define malloc instrumented_malloc macro 55 #undef malloc macro 73 res = malloc (size);
|
| /src/external/gpl3/gdb/dist/libbacktrace/ |
| instrumented_alloc.c | 34 processed when including alloc.c below, such that the redefinitions of malloc 52 #define malloc instrumented_malloc macro 55 #undef malloc macro 73 res = malloc (size);
|
| /src/external/gpl3/gdb.old/dist/libbacktrace/ |
| instrumented_alloc.c | 34 processed when including alloc.c below, such that the redefinitions of malloc 52 #define malloc instrumented_malloc macro 55 #undef malloc macro 73 res = malloc (size);
|
| /src/bin/sh/ |
| options.h | 39 unsigned char malloc; /* if parameter list dynamically allocated */ member in struct:shparam
|
| /src/crypto/dist/ipsec-tools/src/racoon/ |
| gcmalloc.h | 35 * Debugging malloc glue for Racoon. 46 * malloc(), calloc(), realloc(), and free() entry points in the main 55 malloc(size_t size) function 111 #define racoon_malloc(sz) malloc((sz))
|
| /src/external/bsd/file/dist/src/ |
| memtest.c | 53 malloc(size_t len) function 56 void *(*orig)(size_t) = dlsym(RTLD_NEXT, "malloc"); 58 int l = snprintf(buf, sizeof(buf), "malloc %zu %p\n", len, p);
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_hip_runtime_wrapper.h | 57 static inline __device__ void *malloc(size_t __size) { function 62 static inline __device__ void *malloc(size_t __size) { function
|
| /src/external/gpl3/gcc/dist/libsanitizer/asan/ |
| asan_malloc_linux.cpp | 11 // Linux-specific malloc interception. 12 // We simply define functions like malloc, free, realloc, etc. 65 INTERCEPTOR(void*, malloc, uptr size) { 125 // We avoid including malloc.h for portability reasons. 170 void *(*malloc)(uptr bytes); member in struct:MallocDebugK 182 void *(*malloc)(uptr bytes); member in struct:MallocDebugL 192 WRAP(malloc), WRAP(free), WRAP(calloc), 197 WRAP(malloc), WRAP(malloc_usable_size), WRAP(memalign),
|