Home
last modified time | relevance | path

Searched refs:_PySlice_GetLongIndices (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Include/
Dsliceobject.h37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
/external/python/cpython3/Objects/
Dsliceobject.c371 _PySlice_GetLongIndices(PySliceObject *self, PyObject *length, in _PySlice_GetLongIndices() function
532 error = _PySlice_GetLongIndices(self, length, &start, &stop, &step); in slice_indices()
Drangeobject.c306 error = _PySlice_GetLongIndices(slice, r->length, &start, &stop, &step); in compute_slice()