Searched refs:var (Results 1 – 9 of 9) sorted by relevance
/picolibc-latest/newlib/libc/include/sys/ |
D | queue.h | 234 #define SLIST_FOREACH(var, head, field) \ argument 235 for ((var) = SLIST_FIRST((head)); \ 236 (var); \ 237 (var) = SLIST_NEXT((var), field)) 239 #define SLIST_FOREACH_FROM(var, head, field) \ argument 240 for ((var) = ((var) ? (var) : SLIST_FIRST((head))); \ 241 (var); \ 242 (var) = SLIST_NEXT((var), field)) 244 #define SLIST_FOREACH_SAFE(var, head, field, tvar) \ argument 245 for ((var) = SLIST_FIRST((head)); \ [all …]
|
D | cdefs.h | 678 #define __DECONST(type, var) ((type)(__uintptr_t)(const void *)(var)) argument 682 #define __DEVOLATILE(type, var) ((type)(__uintptr_t)(volatile void *)(var)) argument 686 #define __DEQUALIFY(type, var) ((type)(__uintptr_t)(const volatile void *)(var)) argument
|
/picolibc-latest/newlib/libc/reent/ |
D | reent.tex | 42 For example, the function @code{fopen} takes two arguments, @var{file} 43 and @var{mode}, and uses the global reentrancy structure. The function 44 @code{_fopen_r} takes the arguments, @var{struct_reent}, which is a 45 pointer to an instance of the reentrancy structure, @var{file} 46 and @var{mode}.
|
/picolibc-latest/.github/ |
D | Dockerfile | 21 rm -rf /var/lib/apt/lists/*
|
D | Dockerfile-zephyr | 36 rm -rf /var/lib/apt/lists/*
|
/picolibc-latest/doc/ |
D | releasing.md | 63 …$ scp builds/dist/picolibc-<version>-<arm-et-version>.zip keithp.com:/var/www/picolibc/dist/gnu-ar… 71 $ scp build-native/meson-dist/* keithp.com:/var/www/picolibc/dist
|
/picolibc-latest/newlib/libc/stdio/ |
D | stdio.tex | 32 _stdin_r(@var{reent}) 33 _stdout_r(@var{reent}) 34 _stderr_r(@var{reent}) 39 @code{stderr}. The argument @var{reent} is a pointer to a reentrancy
|
/picolibc-latest/cmake/ |
D | picolibc.cmake | 106 function(_picolibc_supported_compile_options var) 118 set(${var} ${options} PARENT_SCOPE)
|
/picolibc-latest/newlib/ |
D | ChangeLog-2015 | 19646 * libc/stdio/vfscanf.c (__svfscanf_r): Initialize new_exp local var.
|