Lines Matching full:sizehint
601 int sizehint = -1;
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;
664 if (!PyArg_ParseTuple(args, "|l:readlines", &sizehint))
702 sizehint = 0;
759 if (sizehint > 0)
760 if (totalread >= (size_t)sizehint)
763 sizehint = 0;
772 if (sizehint > 0) {