Lines Matching refs:stop
1725 Py_ssize_t start, stop, step, slicelen, i;
1732 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
1735 slicelen = PySlice_AdjustIndices(self->extra->length, &start, &stop,
1778 Py_ssize_t start, stop, step, slicelen, newlen, i;
1789 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
1792 slicelen = PySlice_AdjustIndices(self->extra->length, &start, &stop,
1807 stop = start + 1;
1808 start = stop + step * (slicelen - 1) - 1;
1828 for (cur = start, i = 0; cur < (size_t)stop; cur += step, ++i) {
1916 for (i = stop; i < self->extra->length; i++)
1920 for (i = self->extra->length-1; i >= stop; i--)