Lines Matching full:sizehint
1255 newPyEpoll_Object(PyTypeObject *type, int sizehint, int flags, SOCKET fd)
1272 self->epfd = epoll_create(sizehint);
1298 int flags = 0, sizehint = FD_SETSIZE - 1;
1299 static char *kwlist[] = {"sizehint", "flags", NULL};
1302 &sizehint, &flags))
1304 if (sizehint < 0) {
1305 PyErr_SetString(PyExc_ValueError, "negative sizehint");
1309 return newPyEpoll_Object(type, sizehint, flags, -1);
1652 "select.epoll(sizehint=-1, flags=0)\n\
1656 sizehint must be a positive integer or -1 for the default size. The\n\
1657 sizehint is used to optimize internal data structures. It doesn't limit\n\