Lines Matching defs:stop
554 stop: slice_index(accept={int}, c_default="PY_SSIZE_T_MAX") = sys.maxsize
564 Py_ssize_t stop)
574 if (stop < 0) {
575 stop += Py_SIZE(self);
577 else if (stop > Py_SIZE(self)) {
578 stop = Py_SIZE(self);
580 for (i = start; i < stop; i++) {
790 Py_ssize_t start, stop, step, slicelength, i;
795 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
799 &stop, step);