Home
last modified time | relevance | path

Searched refs:malloc (Results 1 – 25 of 96) sorted by relevance

1234

/picolibc-latest/newlib/libc/stdlib/
Dmeson.build40 '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.c43 void * malloc(size_t) _ATTRIBUTE((__weak__));
81 p = (struct _atexit *) malloc (sizeof *p); in __register_exitproc()
Dnano-realloc.c41 return malloc(size); in realloc()
128 mem = malloc(size); in realloc()
Dsetenv.c92 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()
Dnano-calloc.c47 return malloc(bytes); in calloc()
DCMakeLists.txt121 picolibc_sources_flags("-fno-builtin-malloc;-fno-builtin-free"
126 nano-malloc.c
127 nano-malloc-stats.c
128 nano-malloc-usable-size.c
Dstdlib.tex25 * 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/
Dmalloc.c58 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/
Dmallocr.c9 return malloc (sz); in _malloc_r()
/picolibc-latest/scripts/
Ddo-clang-thumb-configure36 exec "$(dirname "$0")"/do-configure clang-thumb-none-eabi -Dtests=true -Dtests-enable-full-malloc-s…
Ddo-clang-thumbv7-a-configure36 …/do-configure clang-thumbv7-a-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
Ddo-clang-thumbv7e+dp-configure36 …o-configure clang-thumbv7e+dp-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
Ddo-clang-thumbv7e+fp-configure36 …o-configure clang-thumbv7e+fp-none-eabi -Dtests=true -Dtests-enable-full-malloc-stress=false -Dmul…
Ddo-clang-thumbv6m-configure39 -Dtests-enable-full-malloc-stress=false \
Ddo-clang-thumbv7m-configure39 -Dtests-enable-full-malloc-stress=false \
Ddo-clang-rv32imafdc-configure49 -Dtests-enable-full-malloc-stress=false \
/picolibc-latest/newlib/libc/machine/nvptx/
Dmallocr.c22 return malloc (n); in _malloc_r()
Dmalloc.c24 void *malloc (size_t size) in malloc() function
Dcalloc.c24 void *p = malloc (size * len); in calloc()
Drealloc.c23 void *new_ptr = malloc (new_size); in realloc()
/picolibc-latest/newlib/libc/string/
Dstrdup.c13 char *copy = malloc (len); in strdup()
Dwcsdup.c43 wchar_t *copy = malloc (len * sizeof (wchar_t)); in wcsdup()
Dstrndup.c22 copy = malloc (len + 1); in strndup()
/picolibc-latest/newlib/libc/stdio/
Dsetvbuf.c145 if ((buf = malloc (size)) == NULL) in setvbuf()
155 buf = malloc (size); in setvbuf()
/picolibc-latest/.github/workflows/
Dvariants8 … 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