Searched refs:shcnt (Results 1 - 8 of 8) sorted by relevance

/seL4-refos-master/libs/libmuslc/src/internal/
H A Dshgetc.c6 f->shcnt = f->rend - f->rpos;
7 if (lim && f->shcnt > lim)
16 if (f->shlim && f->shcnt >= f->shlim || (c=__uflow(f)) < 0) {
20 if (f->shlim && f->rend - f->rpos > f->shlim - f->shcnt - 1)
21 f->shend = f->rpos + (f->shlim - f->shcnt - 1);
24 if (f->rend) f->shcnt += f->rend - f->rpos + 1;
H A Dshgetc.h6 #define shcnt(f) ((f)->shcnt + ((f)->rpos - (f)->rend)) macro
H A Dstdio_impl.h48 off_t shlim, shcnt; member in struct:_IO_FILE
/seL4-refos-master/libs/libmuslc/src/stdio/
H A Dvfscanf.c88 pos += shcnt(f);
179 pos += shcnt(f);
263 if (!shcnt(f)) goto match_fail;
264 if (t == 'c' && shcnt(f) != width) goto match_fail;
290 if (!shcnt(f)) goto match_fail;
299 if (!shcnt(f)) goto match_fail;
314 pos += shcnt(f);
/seL4-refos-master/libs/libmuslc/src/stdlib/
H A Dstrtod.c15 off_t cnt = shcnt(&f);
H A Dstrtol.c23 size_t cnt = shcnt(&f);
H A Dwcstod.c46 size_t cnt = shcnt(&f);
H A Dwcstol.c48 size_t cnt = shcnt(&f);

Completed in 51 milliseconds