/picolibc-3.7.0-3.6.0/newlib/libc/stdlib/ |
D | meson.build | 36 'nano-malloc-calloc.c', 37 'nano-malloc-cfree.c', 38 'nano-malloc-free.c', 39 'nano-malloc-getpagesize.c', 40 'nano-malloc-mallinfo.c', 41 'nano-malloc-malloc.c', 42 'nano-malloc-malloc_stats.c', 43 'nano-malloc-malloc_usable_size.c', 44 'nano-malloc-mallopt.c', 45 'nano-malloc-memalign.c', [all …]
|
D | CMakeLists.txt | 120 picolibc_sources_flags("-fno-builtin-malloc;-fno-builtin-free" 121 nano-malloc-calloc.c 122 nano-malloc-cfree.c 123 nano-malloc-free.c 124 nano-malloc-getpagesize.c 125 nano-malloc-mallinfo.c 126 nano-malloc-malloc.c 127 nano-malloc-malloc_stats.c 128 nano-malloc-malloc_usable_size.c 129 nano-malloc-mallopt.c [all …]
|
D | __atexit.c | 43 void * malloc(size_t) _ATTRIBUTE((__weak__)); 81 p = (struct _atexit *) malloc (sizeof *p); in __register_exitproc()
|
D | setenv.c | 93 P = (char **) malloc ((size_t) (sizeof (char *) * (cnt + 2))); in setenv() 106 char *E = malloc ((size_t) ((int) (C - name) + l_value + 2)); in setenv()
|
D | nano-mallocr.c | 136 void * malloc(size_t); 160 #define __malloc_malloc(x) malloc(x) 317 void * malloc(size_t s) in malloc() function 399 __strong_reference(malloc, __malloc_malloc); 511 return malloc(bytes); in calloc() 527 return malloc(size); in realloc() 614 mem = malloc(size); in realloc()
|
D | stdlib.tex | 25 * ecvt:: Double or float to string of digits (malloc result) 35 * malloc:: Allocate and manage memory (malloc, realloc, free) 37 * __malloc_lock:: Lock memory pool for malloc and free 132 @include stdlib/malloc.def
|
D | wcstod.c | 179 if ((buf = malloc(len + 1)) == NULL) in wcstod_l() 251 if ((buf = malloc(len + 1)) == NULL) in wcstof_l()
|
D | quick_exit.c | 54 h = malloc(sizeof(*h)); in at_quick_exit()
|
/picolibc-3.7.0-3.6.0/test/ |
D | malloc.c | 57 r = malloc(0); in main() 74 r = malloc(PTRDIFF_MAX); in main() 82 r = malloc(SIZE_MAX); in main() 123 void *big = malloc(1024); in main() 127 void *small = malloc(128); in main()
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/xstormy16/ |
D | mallocr.c | 7 return malloc (sz); in _malloc_r()
|
/picolibc-3.7.0-3.6.0/.github/workflows/ |
D | variants | 8 … configurations, one with multithread disabled and with locale, original malloc and atexit/onexit … 9 …ded=true -Dnewlib-mb=true -Dnewlib-iconv-external-ccs=true -Dnewlib-nano-malloc=false -Dpicoexit=f…
|
/picolibc-3.7.0-3.6.0/scripts/ |
D | do-clang-thumbv7e+fp-configure | 36 …o-configure clang-thumbv7e+fp-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
|
D | do-clang-thumbv6m-configure | 39 -Dtests-enable-full-malloc-stress=false \
|
D | do-clang-thumbv7m-configure | 39 -Dtests-enable-full-malloc-stress=false \
|
D | do-clang-rv32imafdc-configure | 49 -Dtests-enable-full-malloc-stress=false \
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/nvptx/ |
D | mallocr.c | 20 return malloc (n); in _malloc_r()
|
D | malloc.c | 22 void *malloc (size_t size) in malloc() function
|
D | calloc.c | 22 void *p = malloc (size * len); in calloc()
|
D | realloc.c | 21 void *new_ptr = malloc (new_size); in realloc()
|
/picolibc-3.7.0-3.6.0/newlib/libc/string/ |
D | strdup.c | 13 char *copy = malloc (len); in strdup()
|
D | wcsdup.c | 44 wchar_t *copy = malloc (len * sizeof (wchar_t)); in wcsdup()
|
D | strndup.c | 23 copy = malloc (len + 1); in strndup()
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/ |
D | setvbuf.c | 146 if ((buf = malloc (size)) == NULL) in setvbuf() 156 buf = malloc (size); in setvbuf()
|
/picolibc-3.7.0-3.6.0/newlib/libc/search/ |
D | hcreate_r.c | 117 htab->htable = malloc(htab->htablesize * sizeof htab->htable[0]); in hcreate_r() 184 ie = malloc(sizeof *ie); in hsearch_r()
|
/picolibc-3.7.0-3.6.0/newlib/libc/argz/ |
D | argz_create.c | 38 if(!(*argz = (char *)malloc(*argz_len))) in argz_create()
|