Searched refs:WRAPPER_FUNC (Results 1 – 6 of 6) sorted by relevance
/hal_rpi_pico-latest/src/rp2_common/pico_float/ |
D | float_math.c | 92 float WRAPPER_FUNC(ldexpf)(float x, int de) { in WRAPPER_FUNC() function 103 float WRAPPER_FUNC(copysignf)(float x, float y) { in WRAPPER_FUNC() function 174 float WRAPPER_FUNC(truncf)(float x) { in WRAPPER_FUNC() function 190 float WRAPPER_FUNC(roundf)(float x) { in WRAPPER_FUNC() function 213 float WRAPPER_FUNC(floorf)(float x) { in WRAPPER_FUNC() function 234 float WRAPPER_FUNC(ceilf)(float x) { in WRAPPER_FUNC() function 255 float WRAPPER_FUNC(asinf)(float x) { in WRAPPER_FUNC() function 263 float WRAPPER_FUNC(acosf)(float x) { in WRAPPER_FUNC() function 271 float WRAPPER_FUNC(atanf)(float x) { in WRAPPER_FUNC() function 278 float WRAPPER_FUNC(sinhf)(float x) { in WRAPPER_FUNC() function [all …]
|
/hal_rpi_pico-latest/src/rp2_common/pico_double/ |
D | double_math.c | 95 double WRAPPER_FUNC(ldexp)(double x, int de) { in WRAPPER_FUNC() function 107 double WRAPPER_FUNC(copysign)(double x, double y) { in WRAPPER_FUNC() function 177 double WRAPPER_FUNC(trunc)(double x) { in WRAPPER_FUNC() function 193 double WRAPPER_FUNC(round)(double x) { in WRAPPER_FUNC() function 216 double WRAPPER_FUNC(floor)(double x) { in WRAPPER_FUNC() function 237 double WRAPPER_FUNC(ceil)(double x) { in WRAPPER_FUNC() function 258 double WRAPPER_FUNC(asin)(double x) { in WRAPPER_FUNC() function 266 double WRAPPER_FUNC(acos)(double x) { in WRAPPER_FUNC() function 274 double WRAPPER_FUNC(atan)(double x) { in WRAPPER_FUNC() function 281 double WRAPPER_FUNC(sinh)(double x) { in WRAPPER_FUNC() function [all …]
|
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/ |
D | stdio.c | 289 #define PRIMARY_STDIO_FUNC(x) WRAPPER_FUNC(x) 357 int stdio_getchar(void) __attribute__((alias(__XSTRING(WRAPPER_FUNC(getchar))))); 358 int stdio_putchar(int) __attribute__((alias(__XSTRING(WRAPPER_FUNC(putchar))))); 359 int stdio_puts(const char *s) __attribute__((alias(__XSTRING(WRAPPER_FUNC(puts))))); 360 int stdio_vprintf(const char *format, va_list va) __attribute__((alias(__XSTRING(WRAPPER_FUNC(vprin… 361 …, 0) stdio_printf(const char* format, ...) __attribute__((alias(__XSTRING(WRAPPER_FUNC(printf))))); 370 int WRAPPER_FUNC(getchar)(void) { in WRAPPER_FUNC() function 373 int WRAPPER_FUNC(putchar)(int c) { in WRAPPER_FUNC() function 376 int WRAPPER_FUNC(puts)(const char *s) { in WRAPPER_FUNC() function 379 int WRAPPER_FUNC(vprintf)(const char *format, va_list va) { in WRAPPER_FUNC() function [all …]
|
/hal_rpi_pico-latest/src/rp2_common/pico_malloc/ |
D | malloc.c | 68 void *WRAPPER_FUNC(malloc)(size_t size) { in WRAPPER_FUNC() function 83 void *WRAPPER_FUNC(calloc)(size_t count, size_t size) { in WRAPPER_FUNC() function 98 void *WRAPPER_FUNC(realloc)(void *mem, size_t size) { in WRAPPER_FUNC() function 113 void WRAPPER_FUNC(free)(void *mem) { in WRAPPER_FUNC() function
|
/hal_rpi_pico-latest/src/rp2_common/pico_platform_compiler/include/pico/platform/ |
D | compiler.h | 187 #define WRAPPER_FUNC(x) __wrap_ ## x macro
|
/hal_rpi_pico-latest/src/rp2_common/pico_printf/ |
D | printf.c | 876 int WRAPPER_FUNC(sprintf)(char *buffer, const char *format, ...) { in WRAPPER_FUNC() function 884 int WRAPPER_FUNC(snprintf)(char *buffer, size_t count, const char *format, ...) { in WRAPPER_FUNC() function 892 int WRAPPER_FUNC(vsnprintf)(char *buffer, size_t count, const char *format, va_list va) { in WRAPPER_FUNC() function
|