/third_party/musl/porting/liteos_m/kernel/src/stdio/ |
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/ |
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/linux/user/src/stdio/ |
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/src/stdio/ |
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/uniproton/kernel/src/internal/ |
D | shgetc.c | 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()
|
D | shgetc.h | 27 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/porting/liteos_a/kernel/src/internal/ |
D | shgetc.c | 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()
|
D | shgetc.h | 26 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/src/internal/ |
D | shgetc.c | 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()
|
D | shgetc.h | 26 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/musl/porting/liteos_m/kernel/src/internal/ |
D | shgetc.c | 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()
|
D | shgetc.h | 27 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->buf)) macro
|
/third_party/ffmpeg/libavutil/ |
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(f); in ff_vfscanf() 888 if (!shcnt(f)) goto match_fail; in ff_vfscanf() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcInstrFormats.td | 215 bits<6> shcnt; // shcnt32 / shcnt64. 222 let Inst{5-0} = shcnt; 233 def ri : F3_Si<2, Op3Val, XVal, (outs RC:$rd), (ins RC:$rs1, i32imm:$shcnt), 234 !strconcat(OpcStr, " $rs1, $shcnt, $rd"), 235 [(set VT:$rd, (OpNode VT:$rs1, (i32 imm:$shcnt)))],
|
/third_party/musl/porting/liteos_a/kernel/src/stdlib/ |
D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/src/stdlib/ |
D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
D | wcstod.c | 45 size_t cnt = shcnt(&f); in wcstox()
|
/third_party/musl/porting/linux/user/src/stdlib/ |
D | strtod.c | 13 off_t cnt = shcnt(&f); in strtox()
|
D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/porting/uniproton/kernel/src/stdlib/ |
D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|
/third_party/musl/porting/liteos_m/kernel/src/stdlib/ |
D | strtod.c | 12 off_t cnt = shcnt(&f); in strtox()
|
D | strtol.c | 15 size_t cnt = shcnt(&f); in strtox()
|