Lines Matching refs:stop
390 Py_ssize_t start, stop, step, slicelength, i;
392 if (PySlice_Unpack(index, &start, &stop, &step) < 0) {
396 &start, &stop, step);
595 Py_ssize_t start, stop, step, slicelen, needed;
626 stop = i + 1;
637 if (PySlice_Unpack(index, &start, &stop, &step) < 0) {
641 &stop, step);
676 if ((step < 0 && start < stop) ||
677 (step > 0 && start > stop))
678 stop = start;
680 return bytearray_setslice_linear(self, start, stop, bytes, needed);
696 stop = start + 1;
697 start = stop + step * (slicelen - 1) - 1;