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

/darwin-on-arm/xnu/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...]
/darwin-on-arm/xnu/bsd/kern/
H A Dtty_ptmx.c1024 int nread; local
1028 nread = tp->t_canq.c_cc;
1030 nread += tp->t_rawq.c_cc;
1031 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0)
1032 nread = 0;
1034 return (nread);
H A Dtty.c1576 int nread; local
1582 nread = tp->t_canq.c_cc;
1584 nread += tp->t_rawq.c_cc;
1585 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0)
1586 nread = 0;
1588 return (nread);
H A Dsys_pipe.c717 int nread = 0; local
774 nread += size;
795 if (nread > 0)

Completed in 78 milliseconds