Lines Matching refs:start
12 [clinic start generated code]*/
553 start: slice_index(accept={int}) = 0
560 [clinic start generated code]*/
563 tuple_index_impl(PyTupleObject *self, PyObject *value, Py_ssize_t start,
569 if (start < 0) {
570 start += Py_SIZE(self);
571 if (start < 0)
572 start = 0;
580 for (i = start; i < stop; i++) {
598 [clinic start generated code]*/
695 [clinic start generated code]*/
790 Py_ssize_t start, stop, step, slicelength, i;
795 if (PySlice_Unpack(item, &start, &stop, &step) < 0) {
798 slicelength = PySlice_AdjustIndices(PyTuple_GET_SIZE(self), &start,
804 else if (start == 0 && step == 1 &&
816 for (cur = start, i = 0; i < slicelength;
837 [clinic start generated code]*/