/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
H A D | vfscanf.c | 88 pos += shcnt(f); in vfscanf() 104 pos += shcnt(f); in vfscanf() 183 pos += shcnt(f); in vfscanf() 267 if (!shcnt(f)) goto match_fail; in vfscanf() 268 if (t == 'c' && shcnt(f) != width) goto match_fail; in vfscanf() 294 if (!shcnt(f)) goto match_fail; in vfscanf() 303 if (!shcnt(f)) goto match_fail; in vfscanf() 318 pos += shcnt(f); in vfscanf()
|
/third_party/musl/porting/uniproton/kernel/src/stdio/ |
H A D | vfscanf.c | 88 pos += shcnt(f); in vfscanf() 104 pos += shcnt(f); in vfscanf() 183 pos += shcnt(f); in vfscanf() 267 if (!shcnt(f)) goto match_fail; in vfscanf() 268 if (t == 'c' && shcnt(f) != width) goto match_fail; in vfscanf() 294 if (!shcnt(f)) goto match_fail; in vfscanf() 303 if (!shcnt(f)) goto match_fail; in vfscanf() 318 pos += shcnt(f); in vfscanf()
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
H A D | shgetc.c | 3 /* The shcnt field stores the number of bytes read so far, offset by 5 * so that between calls the inline shcnt macro can add rpos-buf to get 11 f->shcnt = f->buf - f->rpos; in __shlim() 22 off_t cnt = shcnt(f); in __shgetc() 24 f->shcnt = f->buf - f->rpos + cnt; in __shgetc() 34 f->shcnt = f->buf - f->rpos + cnt; in __shgetc()
|
H A D | shgetc.h | 13 * shgetc, shunget, and shcnt are valid as long as no other stdio functions 27 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/porting/uniproton/kernel/src/internal/ |
H A D | shgetc.c | 3 /* The shcnt field stores the number of bytes read so far, offset by 5 * so that between calls the inline shcnt macro can add rpos-buf to get 11 f->shcnt = f->buf - f->rpos; in __shlim() 22 off_t cnt = shcnt(f); in __shgetc() 24 f->shcnt = f->buf - f->rpos + cnt; in __shgetc() 34 f->shcnt = f->buf - f->rpos + cnt; in __shgetc()
|
H A D | shgetc.h | 13 * shgetc, shunget, and shcnt are valid as long as no other stdio functions 27 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/src/internal/ |
H A D | shgetc.c | 3 /* The shcnt field stores the number of bytes read so far, offset by 5 * so that between calls the inline shcnt macro can add rpos-buf to get 11 f->shcnt = f->buf - f->rpos; in __shlim() 22 off_t cnt = shcnt(f); in __shgetc() 24 f->shcnt = f->buf - f->rpos + cnt; in __shgetc() 34 f->shcnt = f->buf - f->rpos + cnt; in __shgetc()
|
H A D | shgetc.h | 12 * shgetc, shunget, and shcnt are valid as long as no other stdio functions 26 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
H A D | shgetc.c | 3 /* The shcnt field stores the number of bytes read so far, offset by 5 * so that between calls the inline shcnt macro can add rpos-buf to get 11 f->shcnt = f->buf - f->rpos; in __shlim() 22 off_t cnt = shcnt(f); in __shgetc() 24 f->shcnt = f->buf - f->rpos + cnt; in __shgetc() 34 f->shcnt = f->buf - f->rpos + cnt; in __shgetc()
|
H A D | shgetc.h | 12 * shgetc, shunget, and shcnt are valid as long as no other stdio functions 26 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
H A D | stdio_impl.h | 42 off_t shlim, shcnt; member
|
/third_party/musl/src/stdio/ |
H A D | vfscanf.c | 100 pos += shcnt(f); in vfscanf() 116 pos += shcnt(f); in vfscanf() 195 pos += shcnt(f); in vfscanf() 279 if (!shcnt(f)) goto match_fail; in vfscanf() 280 if (t == 'c' && shcnt(f) != width) goto match_fail; in vfscanf() 306 if (!shcnt(f)) goto match_fail; in vfscanf() 338 if (!shcnt(f)) goto match_fail; in vfscanf() 353 pos += shcnt(f); in vfscanf()
|
/third_party/musl/porting/linux/user/src/stdio/ |
H A D | vfscanf.c | 100 pos += shcnt(f); in vfscanf() 116 pos += shcnt(f); in vfscanf() 195 pos += shcnt(f); in vfscanf() 279 if (!shcnt(f)) goto match_fail; in vfscanf() 280 if (t == 'c' && shcnt(f) != width) goto match_fail; in vfscanf() 306 if (!shcnt(f)) goto match_fail; in vfscanf() 338 if (!shcnt(f)) goto match_fail; in vfscanf() 353 pos += shcnt(f); in vfscanf()
|
/third_party/ffmpeg/libavutil/ |
H A D | avsscanf.c | 42 ptrdiff_t shlim, shcnt; member 54 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro 88 f->shcnt = f->buf - f->rpos; in ffshlim() 99 ptrdiff_t cnt = shcnt(f); in ffshgetc() 101 f->shcnt = f->buf - f->rpos + cnt; in ffshgetc() 110 f->shcnt = f->buf - f->rpos + cnt; in ffshgetc() 751 pos += shcnt(f); in ff_vfscanf() 767 pos += shcnt(f); in ff_vfscanf() 842 pos += shcnt( in ff_vfscanf() [all...] |
/third_party/musl/porting/liteos_a/kernel/src/stdlib/ |
H A D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
H A D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/porting/liteos_m/kernel/src/stdlib/ |
H A D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
H A D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/porting/linux/user/src/stdlib/ |
H A D | strtod.c | 13 off_t cnt = shcnt(&f); in strtox()
|
H A D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/porting/uniproton/kernel/src/stdlib/ |
H A D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
H A D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/src/stdlib/ |
H A D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
H A D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
H A D | wcstod.c | 45 size_t cnt = shcnt(&f); in wcstox()
|