Home
last modified time | relevance | path

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

/third_party/python/Include/
Dsliceobject.h37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
/third_party/python/Objects/
Dsliceobject.c381 _PySlice_GetLongIndices(PySliceObject *self, PyObject *length, in _PySlice_GetLongIndices() function
542 error = _PySlice_GetLongIndices(self, length, &start, &stop, &step); in slice_indices()
Drangeobject.c351 error = _PySlice_GetLongIndices(slice, r->length, &start, &stop, &step); in compute_slice()