Searched refs:malloc (Results 1 – 25 of 96) sorted by relevance
1234
/picolibc-latest/newlib/libc/stdlib/ |
D | meson.build | 40 'nano-malloc.c', 41 'nano-malloc-stats.c', 42 'nano-malloc-usable-size.c', 52 'malloc-calloc.c', 53 'malloc-cfree.c', 54 'malloc-free.c', 55 'malloc-mallinfo.c', 56 'malloc-malloc.c', 57 'malloc-malloc_stats.c', 58 'malloc-malloc_usable_size.c', [all …]
|
D | __atexit.c | 43 void * malloc(size_t) _ATTRIBUTE((__weak__)); 81 p = (struct _atexit *) malloc (sizeof *p); in __register_exitproc()
|
D | nano-realloc.c | 41 return malloc(size); in realloc() 128 mem = malloc(size); in realloc()
|
D | setenv.c | 92 P = (char **) malloc ((size_t) (sizeof (char *) * (cnt + 2))); in setenv() 105 char *E = malloc ((size_t) ((int) (C - name) + l_value + 2)); in setenv()
|
D | nano-calloc.c | 47 return malloc(bytes); in calloc()
|
D | CMakeLists.txt | 121 picolibc_sources_flags("-fno-builtin-malloc;-fno-builtin-free" 126 nano-malloc.c 127 nano-malloc-stats.c 128 nano-malloc-usable-size.c
|
D | stdlib.tex | 25 * Function ecvt:: Double or float to string of digits (malloc result) 35 * Function malloc:: Allocate and manage memory (malloc, realloc, free) 37 * Function __malloc_lock:: Lock memory pool for malloc and free 132 @include stdlib/malloc.def
|
/picolibc-latest/test/ |
D | malloc.c | 58 r = malloc(0); in main() 111 r = malloc(PTRDIFF_MAX); in main() 114 q = malloc(PTRDIFF_MAX); in main() 124 r = malloc(SIZE_MAX); in main() 167 void *big = malloc(1024); in main() 171 void *small = malloc(128); in main()
|
/picolibc-latest/newlib/libc/machine/xstormy16/ |
D | mallocr.c | 9 return malloc (sz); in _malloc_r()
|
/picolibc-latest/scripts/ |
D | do-clang-thumb-configure | 36 exec "$(dirname "$0")"/do-configure clang-thumb-none-eabi -Dtests=true -Dtests-enable-full-malloc-s…
|
D | do-clang-thumbv7-a-configure | 36 …/do-configure clang-thumbv7-a-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
|
D | do-clang-thumbv7e+dp-configure | 36 …o-configure clang-thumbv7e+dp-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
|
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-latest/newlib/libc/machine/nvptx/ |
D | mallocr.c | 22 return malloc (n); in _malloc_r()
|
D | malloc.c | 24 void *malloc (size_t size) in malloc() function
|
D | calloc.c | 24 void *p = malloc (size * len); in calloc()
|
D | realloc.c | 23 void *new_ptr = malloc (new_size); in realloc()
|
/picolibc-latest/newlib/libc/string/ |
D | strdup.c | 13 char *copy = malloc (len); in strdup()
|
D | wcsdup.c | 43 wchar_t *copy = malloc (len * sizeof (wchar_t)); in wcsdup()
|
D | strndup.c | 22 copy = malloc (len + 1); in strndup()
|
/picolibc-latest/newlib/libc/stdio/ |
D | setvbuf.c | 145 if ((buf = malloc (size)) == NULL) in setvbuf() 155 buf = malloc (size); in setvbuf()
|
/picolibc-latest/.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…
|
1234