HomeSort by relevance Sort by last modified time
    Searched defs:sizehint (Results 1 - 14 of 14) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
selectmodule.c 736 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)
740 if (sizehint == -1) {
741 sizehint = FD_SETSIZE-1;
743 else if (sizehint < 1) {
745 "sizehint must be greater zero, got %d",
746 sizehint);
757 self->epfd = epoll_create(sizehint);
775 int sizehint = -1; local
776 static char *kwlist[] = {"sizehint", NULL};
779 &sizehint))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.c 1386 Py_ssize_t sizehint; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
selectmodule.c 770 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)
774 if (sizehint == -1) {
775 sizehint = FD_SETSIZE-1;
777 else if (sizehint < 1) {
779 "sizehint must be greater zero, got %d",
780 sizehint);
791 self->epfd = epoll_create(sizehint);
809 int sizehint = -1; local
810 static char *kwlist[] = {"sizehint", NULL};
813 &sizehint))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
bz2module.c 613 int sizehint = -1; local
615 if (!PyArg_ParseTuple(args, "|i:readline", &sizehint))
639 if (sizehint == 0)
642 ret = Util_GetLine(self, (sizehint < 0) ? 0 : sizehint);
661 long sizehint = 0; local
676 if (!PyArg_ParseTuple(args, "|l:readlines", &sizehint))
714 sizehint = 0;
770 if (sizehint > 0)
771 if (totalread >= (size_t)sizehint)
    [all...]
selectmodule.c 736 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)
740 if (sizehint == -1) {
741 sizehint = FD_SETSIZE-1;
743 else if (sizehint < 1) {
745 "sizehint must be greater zero, got %d",
746 sizehint);
757 self->epfd = epoll_create(sizehint);
775 int sizehint = -1; local
776 static char *kwlist[] = {"sizehint", NULL};
779 &sizehint))
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.c 1383 Py_ssize_t sizehint; local
    [all...]
  /external/python/cpython2/Modules/
bz2module.c 601 int sizehint = -1; local
603 if (!PyArg_ParseTuple(args, "|i:readline", &sizehint))
627 if (sizehint == 0)
630 ret = Util_GetLine(self, (sizehint < 0) ? 0 : sizehint);
649 long sizehint = 0; local
664 if (!PyArg_ParseTuple(args, "|l:readlines", &sizehint))
702 sizehint = 0;
759 if (sizehint > 0)
760 if (totalread >= (size_t)sizehint)
    [all...]
selectmodule.c 770 newPyEpoll_Object(PyTypeObject *type, int sizehint, SOCKET fd)
774 if (sizehint == -1) {
775 sizehint = FD_SETSIZE-1;
777 else if (sizehint < 1) {
779 "sizehint must be greater zero, got %d",
780 sizehint);
791 self->epfd = epoll_create(sizehint);
809 int sizehint = -1; local
810 static char *kwlist[] = {"sizehint", NULL};
813 &sizehint))
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.c 1385 Py_ssize_t sizehint; local
    [all...]
  /external/python/cpython3/Modules/cjkcodecs/
multibytecodec.c 1437 Py_ssize_t sizehint; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c 1664 long sizehint = 0; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c 1612 long sizehint = 0; local
    [all...]
  /external/python/cpython2/Objects/
fileobject.c 1683 long sizehint = 0; local
    [all...]
  /external/python/cpython3/Modules/
selectmodule.c 1298 int flags = 0, sizehint = -1; local
    [all...]

Completed in 1486 milliseconds