Lines Matching defs:remaining
1946 Py_ssize_t remaining = n;
1953 remaining -= PyUnicode_GET_LENGTH(result);
1956 while (remaining > 0) {
1957 res = textiowrapper_read_chunk(self, remaining);
1977 result = textiowrapper_get_decoded_chars(self, remaining);
1980 remaining -= PyUnicode_GET_LENGTH(result);
2110 PyObject *line = NULL, *chunks = NULL, *remaining = NULL;
2151 if (remaining == NULL) {
2159 line = PyUnicode_Concat(remaining, self->decoded_chars);
2161 offset_to_buffer = PyUnicode_GET_LENGTH(remaining);
2162 Py_CLEAR(remaining);
2212 /* There may be some remaining bytes we'll have to prepend to the
2215 remaining = PyUnicode_Substring(line, endpos, line_len);
2216 if (remaining == NULL)
2235 if (remaining != NULL) {
2241 if (PyList_Append(chunks, remaining) < 0)
2243 Py_CLEAR(remaining);
2264 Py_XDECREF(remaining);