Searched refs:ungetc (Results 1 – 25 of 29) sorted by relevance
12
/picolibc-3.7.0-3.6.0/test/ |
D | ungetc.c | 44 ret = ungetc('u', stdin); in main()
|
D | CMakeLists.txt | 41 ungetc
|
D | test-fread-fwrite.c | 233 ungetc(c + 1, f); in main()
|
D | meson.build | 504 plain_tests = ['rand', 'regex', 'ungetc', 'fenv',
|
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/ |
D | ungetc.c | 35 ungetc(int c, FILE *stream) in ungetc() function
|
D | meson.build | 139 'ungetc.c', 195 # atomic support for ungetc
|
D | CMakeLists.txt | 139 ungetc.c
|
D | stdio.h | 247 int ungetc(int __c, FILE *__stream);
|
D | vfscanf.c | 64 #define UNGETC(c,s) ungetc(c,s)
|
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/ |
D | ungetc.c | 49 ungetc (c, fp) in ungetc() function
|
/picolibc-3.7.0-3.6.0/newlib/libc/stdio/ |
D | ungetwc.c | 95 if (ungetc( (unsigned char)buf[len], fp) == EOF) in ungetwc()
|
D | vfscanf.c | 1092 ungetc ( (unsigned char) buf[--s], fp); in _SVFSCANF() 1229 ungetc ( (unsigned char) buf[--s], fp); in _SVFSCANF() 1460 ungetc ( *--p, fp); /* [-+xX] */ in _SVFSCANF() 1787 ungetc ( (unsigned char) decpt[decptpos], in _SVFSCANF() 1825 ungetc ( *--p, fp); /* [-+nNaA] */ in _SVFSCANF() 1838 ungetc ( *--p, fp); /* [iInNtT] */ in _SVFSCANF() 1845 ungetc ( *--p, fp); /* [-+iInN] */ in _SVFSCANF() 1863 ungetc ( *--p, fp); /* [-+.] */ in _SVFSCANF() 1873 ungetc ( c, fp); /* [-+] */ in _SVFSCANF() 1877 ungetc ( c, fp); /* [eE] */ in _SVFSCANF()
|
D | nano-vfscanf_local.h | 60 #define ungetc sungetc macro
|
D | ungetc.c | 113 ungetc ( in ungetc() function
|
D | fread.c | 124 ungetc (c, fp); in crlf_r()
|
D | nano-vfscanf.c | 251 scan_data.pfn_ungetc = ungetc; in _SVFSCANF()
|
D | stdio.h | 374 int ungetc (int, FILE *); 687 ungetc(__c2, __p); in _sgetc()
|
D | stdio.tex | 110 * ungetc:: Push data back into a stream 322 @include stdio/ungetc.def
|
D | meson.build | 106 'ungetc.c',
|
/picolibc-3.7.0-3.6.0/doc/ |
D | locking.md | 24 reentrancy issue related to ungetc/getc.
|
D | printf.md | 246 * `-Datomic-ungetc=true` This option, which is enabled by default, 247 controls whether getc/ungetc use atomic instruction sequences to 249 getc and ungetc may corrupt the state of the input buffer.
|
D | build.md | 84 | atomic-ungetc | true | Make getc/ungetc re-entrant using atomic operations …
|
/picolibc-3.7.0-3.6.0/ |
D | picolibc.h.in | 8 /* Use atomics for fgetc/ungetc for re-entrancy */
|
D | meson_options.txt | 159 option('atomic-ungetc', type: 'boolean', value: true, 160 description: 'use atomics in fgetc/ungetc to make them re-entrant')
|
D | CMakeLists.txt | 72 # Use atomics for fgetc/ungetc for re-entrancy
|
12