Home
last modified time | relevance | path

Searched refs:REAL_FUNC (Results 1 – 3 of 3) sorted by relevance

/hal_rpi_pico-latest/src/rp2_common/pico_malloc/
Dmalloc.c20 extern void *REAL_FUNC(malloc)(size_t size);
21 extern void *REAL_FUNC(calloc)(size_t count, size_t size);
22 extern void *REAL_FUNC(realloc)(void *mem, size_t size);
23 extern void REAL_FUNC(free)(void *mem);
70 void *rc = REAL_FUNC(malloc)(size); in WRAPPER_FUNC()
85 void *rc = REAL_FUNC(calloc)(count, size); in WRAPPER_FUNC()
100 void *rc = REAL_FUNC(realloc)(mem, size); in WRAPPER_FUNC()
115 REAL_FUNC(free)(mem); in WRAPPER_FUNC()
/hal_rpi_pico-latest/src/rp2_common/pico_stdio/
Dstdio.c315 int REAL_FUNC(vprintf)(const char *format, va_list va);
338 ret = REAL_FUNC(vprintf)(format, va); in PRIMARY_STDIO_FUNC()
365 int REAL_FUNC(getchar)(void);
366 int REAL_FUNC(putchar)(int);
367 int REAL_FUNC(puts)(const char *s);
368 int __printflike(1, 0) REAL_FUNC(printf)(const char* format, ...);
371 return REAL_FUNC(getchar)(); in WRAPPER_FUNC()
374 return REAL_FUNC(putchar)(c); in WRAPPER_FUNC()
377 return REAL_FUNC(puts)(s); in WRAPPER_FUNC()
380 return REAL_FUNC(vprintf)(format, va); in WRAPPER_FUNC()
[all …]
/hal_rpi_pico-latest/src/rp2_common/pico_platform_compiler/include/pico/platform/
Dcompiler.h188 #define REAL_FUNC(x) __real_ ## x macro