Lines Matching refs:readahead
553 PyObject *readahead = PyObject_CallOneArg(peek, _PyLong_GetOne());
554 if (readahead == NULL) {
562 if (!PyBytes_Check(readahead)) {
565 "not '%.200s'", Py_TYPE(readahead)->tp_name);
566 Py_DECREF(readahead);
569 if (PyBytes_GET_SIZE(readahead) > 0) {
571 const char *buf = PyBytes_AS_STRING(readahead);
574 if (n >= PyBytes_GET_SIZE(readahead) || n >= limit)
582 if (n >= PyBytes_GET_SIZE(readahead))
590 Py_DECREF(readahead);