Home
last modified time | relevance | path

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

/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dswprint.c23 if (uio->uio_resid == 0) { in __swprint()
28 for (; uio->uio_resid != 0; in __swprint()
29 uio->uio_resid -= len, iov++) { in __swprint()
40 uio->uio_resid = 0; in __swprint()
Dssprint.c20 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __ssprint()
26 uio->uio_resid -= len; /* pretend we copied all */ in __ssprint()
30 uio->uio_resid = 0; in __ssprint()
Dsswprint.c21 while (uio->uio_resid > 0 && uio->uio_iovcnt-- > 0) { in __sswprint()
28 uio->uio_resid -= len; /* pretend we copied all */ in __sswprint()
32 uio->uio_resid = 0; in __sswprint()
Dfvwrite.c63 if ((len = uio->uio_resid) == 0) in _sfvwrite()
90 uio->uio_resid--; in _sfvwrite()
93 while (uio->uio_resid > 0); in _sfvwrite()
106 uio->uio_resid--; in _sfvwrite()
109 while (uio->uio_resid > 0); in _sfvwrite()
131 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
229 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
284 while ((uio->uio_resid -= w) != 0); in _sfvwrite()
Dsprint.c19 if (uio->uio_resid == 0) { in __sprint()
24 uio->uio_resid = 0; in __sprint()
Dnano-vfprintf.c256 if (uio->uio_resid == 0) in _ssprint()
329 while ((uio->uio_resid -= w) != 0); in _ssprint()
331 uio->uio_resid = 0; in _ssprint()
337 uio->uio_resid = 0; in _ssprint()
353 if (uio->uio_resid == 0) in _sprint()
366 for (; uio->uio_resid != 0; in _sprint()
367 uio->uio_resid -= len * sizeof (wchar_t), iov++) in _sprint()
386 uio->uio_resid = 0; in _sprint()
Dfwrite.c124 if (!(uio.uio_resid = iov.iov_len = n = count * size)) in fwrite()
149 return (n - uio.uio_resid) / size; in fwrite()
Dfvwrite.h31 size_t uio_resid; member
Dfputs.c100 iov.iov_len = uio.uio_resid = strlen (s); in fputs()
Dputs.c82 uio.uio_resid = c + 1; in puts()
Dfputws.c120 iov.iov_len = uio.uio_resid = nbytes; in fputws()
Dvfwprintf.c462 uio.uio_resid += iovp->iov_len; \ in VFWPRINTF()
488 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFWPRINTF()
606 uio.uio_resid = 0; in VFWPRINTF()
Dvfprintf.c479 uio.uio_resid += (len); \ in VFPRINTF()
505 if (uio.uio_resid && __SPRINT(fp, &uio)) \ in VFPRINTF()
640 uio.uio_resid = 0; in VFPRINTF()
/picolibc-3.7.0-3.6.0/newlib/
DChangeLog-20152445 * libc/stdio/fvwrite.h: change type of uio_resid from int to size_t to