Lines Matching full:sizehint
1259 const char *method, Py_ssize_t sizehint)
1265 if (sizehint == 0)
1275 if (sizehint < 0)
1280 method, "i", sizehint);
1325 if (endoffile || sizehint < 0) {
1341 if (sizehint < 0 || buf.writer.pos != 0 || rsize == 0)
1344 sizehint = 1; /* read 1 more byte and retry */
1433 Py_ssize_t sizehint;
1436 sizehint = -1;
1438 sizehint = PyLong_AsSsize_t(sizehintobj);
1444 if (sizehint == -1 && PyErr_Occurred())
1447 r = mbstreamreader_iread(self, "read", sizehint);