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

/macosx-10.5.8/xnu-1228.15.4/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...]
/macosx-10.5.8/xnu-1228.15.4/bsd/kern/
H A Dtty_ptmx.c1004 int nread; local
1008 nread = tp->t_canq.c_cc;
1010 nread += tp->t_rawq.c_cc;
1011 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0)
1012 nread = 0;
1014 return (nread);
H A Dsys_pipe.c654 int nread = 0; local
705 nread += size;
724 nread += size;
751 if (nread > 0)
H A Dtty.c1280 int nread; local
1284 nread = tp->t_canq.c_cc;
1286 nread += tp->t_rawq.c_cc;
1287 if (nread < tp->t_cc[VMIN] && tp->t_cc[VTIME] == 0)
1288 nread = 0;
1290 return (nread);

Completed in 33 milliseconds