Home
last modified time | relevance | path

Searched refs:context (Results 1 – 5 of 5) sorted by relevance

/picolibc-latest/newlib/libc/tinystdio/
Dvfscanf.c104 #define scanf_len(context) ((context)->len) argument
108 #define scanf_len(context) (*(context)) argument
112 scanf_getc(FILE *stream, scanf_context_t *context) in scanf_getc() argument
116 c = context->unget; in scanf_getc()
117 context->unget = MY_EOF; in scanf_getc()
122 ++scanf_len(context); in scanf_getc()
127 scanf_ungetc(INT c, FILE *stream, scanf_context_t *context) in scanf_ungetc() argument
130 --scanf_len(context); in scanf_ungetc()
133 context->unget = c; in scanf_ungetc()
141 getmb(FILE *stream, scanf_context_t *context, mbstate_t *ps, uint16_t flags) in getmb() argument
[all …]
Dconv_flt.c201 conv_flt (FLT_STREAM *stream, FLT_CONTEXT *context, width_t width, void *addr, uint16_t flags) in conv_flt() argument
211 i = scanf_getc (stream, context); /* after scanf_ungetc() */ in conv_flt()
218 if (!CHECK_WIDTH() || (i = scanf_getc (stream, context)) < 0) in conv_flt()
237 if ((i = scanf_getc (stream, context)) >= 0) { in conv_flt()
240 scanf_ungetc (i, stream, context); in conv_flt()
249 if ((i = scanf_getc (stream, context)) == '(') { in conv_flt()
250 while (CHECK_WIDTH() && (i = scanf_getc (stream, context)) != ')') { in conv_flt()
259 scanf_ungetc (i, stream, context); in conv_flt()
353 } while (CHECK_WIDTH() && (i = scanf_getc (stream, context)) >= 0); in conv_flt()
375 esign = scanf_getc (stream, context); in conv_flt()
[all …]
/picolibc-latest/newlib/libc/machine/xtensa/
Dxtensa.tex25 @code{setjmp} saves the stack context/environment in @code{env} for
26 later use by @code{longjmp}. The stack context will be invalidated if
32 returning from @code{longjmp} using the saved context.
/picolibc-latest/
DREADME.md115 in the local context.
/picolibc-latest/newlib/
DChangeLog-201515624 * libc/sys/linux/linuxthreads/tst-context.c: Ditto.