Searched refs:nread (Results 1 - 3 of 3) sorted by relevance

/xnu-2782.1.97/libkern/stdio/
H A Dscanf.c143 int nread; /* number of characters consumed from fp */ local
156 nread = 0;
164 nread++, inr--, inp++;
184 nread++;
273 *va_arg(ap, char *) = nread;
275 *va_arg(ap, short *) = nread;
277 *va_arg(ap, long *) = nread;
279 *va_arg(ap, long long *) = nread;
281 *va_arg(ap, int *) = nread;
297 nread
[all...]
/xnu-2782.1.97/bsd/kern/
H A Dtty.c1608 int nread; local
1614 nread = tp->t_canq.c_cc;
1616 nread += tp->t_rawq.c_cc;
1617 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0)
1618 nread = 0;
1620 return (nread);
H A Dsys_pipe.c716 int nread = 0; local
773 nread += size;
794 if (nread > 0)

Completed in 91 milliseconds