Lines Matching refs:next_input
673 /* snapshot is either NULL, or a tuple (dec_flags, next_input) where
675 * next_input is the chunk of input bytes that comes next after the
1867 PyObject *next_input = dec_buffer;
1868 PyBytes_Concat(&next_input, input_chunk);
1870 if (next_input == NULL) {
1873 PyObject *snapshot = Py_BuildValue("NN", dec_flags, next_input);
2623 PyObject *next_input;
2671 if (!PyArg_ParseTuple(self->snapshot, "iO", &cookie.dec_flags, &next_input))
2674 assert (PyBytes_Check(next_input));
2676 cookie.start_pos -= PyBytes_GET_SIZE(next_input);
2735 assert(skip_back <= PyBytes_GET_SIZE(next_input));
2736 input = PyBytes_AS_STRING(next_input);
2779 input = PyBytes_AS_STRING(next_input);
2780 input_end = input + PyBytes_GET_SIZE(next_input);