Lines Matching full:nfds
66 int nfds;
147 epollop->nfds = INITIAL_NFILES;
159 if (max >= epollop->nfds) {
161 int nfds;
163 nfds = epollop->nfds;
164 while (nfds <= max)
165 nfds <<= 1;
167 fds = realloc(epollop->fds, nfds * sizeof(struct evepoll));
173 memset(fds + epollop->nfds, 0,
174 (nfds - epollop->nfds) * sizeof(struct evepoll));
175 epollop->nfds = nfds;
219 if (fd < 0 || fd >= epollop->nfds)
275 if (fd >= epollop->nfds) {
324 if (fd >= epollop->nfds)