Home
last modified time | relevance | path

Searched refs:uio_resid (Results 1 – 14 of 14) sorted by relevance

/picolibc-latest/newlib/libc/stdio/
Dswprint.c24 if (uio->uio_resid == 0) { in __swprint()
29 for (; uio->uio_resid != 0; in __swprint()
30 uio->uio_resid -= len, iov++) { in __swprint()
41 uio->uio_resid = 0; in __swprint()
Dsswprint.c20 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __sswprint()
27 uio->uio_resid -= len; /* pretend we copied all */ in __sswprint()
31 uio->uio_resid = 0; in __sswprint()
Dssprint.c21 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __ssprint()
27 uio->uio_resid -= len; /* pretend we copied all */ in __ssprint()
31 uio->uio_resid = 0; in __ssprint()
Dfvwrite.c62 if ((len = uio->uio_resid) == 0) in _sfvwrite()
89 uio->uio_resid--; in _sfvwrite()
92 while (uio->uio_resid > 0); in _sfvwrite()
105 uio->uio_resid--; in _sfvwrite()
108 while (uio->uio_resid > 0); in _sfvwrite()
130 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
228 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
283 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
Dsprint.c20 if (uio->uio_resid == 0) { in __sprint()
25 uio->uio_resid = 0; in __sprint()
Dnano-vfprintf.c254 if (uio->uio_resid == 0) in _ssprint()
327 while ((uio->uio_resid -= w) != 0); in _ssprint()
329 uio->uio_resid = 0; in _ssprint()
335 uio->uio_resid = 0; in _ssprint()
351 if (uio->uio_resid == 0) in _sprint()
364 for (; uio->uio_resid != 0; in _sprint()
365 uio->uio_resid -= len * sizeof (wchar_t), iov++) in _sprint()
384 uio->uio_resid = 0; in _sprint()
Dfwrite.c123 if (!(uio.uio_resid = iov.iov_len = n = count * size)) in fwrite()
148 return (n - uio.uio_resid) / size; in fwrite()
Dfvwrite.h31 size_t uio_resid; member
Dfputs.c99 iov.iov_len = uio.uio_resid = strlen (s); in fputs()
Dputs.c81 uio.uio_resid = c + 1; in puts()
Dfputws.c119 iov.iov_len = uio.uio_resid = nbytes; in fputws()
Dvfwprintf.c460 uio.uio_resid += iovp->iov_len; \ in VFWPRINTF()
486 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFWPRINTF()
604 uio.uio_resid = 0; in VFWPRINTF()
Dvfprintf.c474 uio.uio_resid += (len); \ in VFPRINTF()
500 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFPRINTF()
635 uio.uio_resid = 0; in VFPRINTF()
/picolibc-latest/newlib/
DChangeLog-20152445 * libc/stdio/fvwrite.h: change type of uio_resid from int to size_t to