Lines Matching refs:stop
1044 Py_ssize_t i, n, start=0, stop=Py_SIZE(deque);
1053 _PyEval_SliceIndexNotNone, &stop)) {
1062 if (stop < 0) {
1063 stop += Py_SIZE(deque);
1064 if (stop < 0)
1065 stop = 0;
1067 if (stop > Py_SIZE(deque))
1068 stop = Py_SIZE(deque);
1069 if (start > stop)
1070 start = stop;
1071 assert(0 <= start && start <= stop && stop <= Py_SIZE(deque));
1084 n = stop - i;
1090 return PyLong_FromSsize_t(stop - n - 1);
1109 "D.index(value, [start, [stop]]) -- return first index of value.\n"