Lines Matching defs:sizehint
1394 const char *method, Py_ssize_t sizehint)
1400 if (sizehint == 0)
1410 if (sizehint < 0)
1415 method, "i", sizehint);
1460 if (endoffile || sizehint < 0) {
1476 if (sizehint < 0 || buf.writer.pos != 0 || rsize == 0)
1479 sizehint = 1; /* read 1 more byte and retry */
1568 Py_ssize_t sizehint;
1571 sizehint = -1;
1573 sizehint = PyLong_AsSsize_t(sizehintobj);
1579 if (sizehint == -1 && PyErr_Occurred())
1582 r = mbstreamreader_iread(self, "read", sizehint);