Home
last modified time | relevance | path

Searched refs:PySlice_GetIndices (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Misc/NEWS.d/next/C API/
D2018-07-26-12-24-29.bpo-34229.SupCZK.rst2 :c:func:`PySlice_GetIndices`.
/external/python/cpython2/Doc/c-api/
Dslice.rst31 .. c:function:: int PySlice_GetIndices(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start, …
54 Usable replacement for :c:func:`PySlice_GetIndices`. Retrieve the start,
/external/python/cpython2/Include/
Dsliceobject.h35 PyAPI_FUNC(int) PySlice_GetIndices(PySliceObject *r, Py_ssize_t length,
/external/python/cpython3/Include/
Dsliceobject.h41 PyAPI_FUNC(int) PySlice_GetIndices(PyObject *r, Py_ssize_t length,
/external/python/cpython3/Doc/c-api/
Dslice.rst29 .. c:function:: int PySlice_GetIndices(PyObject *slice, Py_ssize_t length, Py_ssize_t *start, Py_ss…
48 Usable replacement for :c:func:`PySlice_GetIndices`. Retrieve the start,
/external/python/cpython2/PC/os2vacpp/
Dpython.def359 PySlice_GetIndices
/external/python/cpython2/Objects/
Dsliceobject.c103 PySlice_GetIndices(PySliceObject *r, Py_ssize_t length, in PySlice_GetIndices() function
/external/python/cpython3/Doc/data/
Drefcounts.dat2047 PySlice_GetIndices:int:::
2048 PySlice_GetIndices:PyObject*:slice:0:
2049 PySlice_GetIndices:Py_ssize_t:length::
2050 PySlice_GetIndices:Py_ssize_t*:start::
2051 PySlice_GetIndices:Py_ssize_t*:stop::
2052 PySlice_GetIndices:Py_ssize_t*:step::
/external/python/cpython3/Objects/
Dsliceobject.c164 PySlice_GetIndices(PyObject *_r, Py_ssize_t length, in PySlice_GetIndices() function
/external/python/cpython3/PC/
Dpython3.def535 PySlice_GetIndices=python37.PySlice_GetIndices
/external/python/cpython2/PC/os2emx/
Dpython27.def521 "PySlice_GetIndices"
/external/python/cpython2/Modules/
D_testcapimodule.c1572 result = PySlice_GetIndices(slice, length, &start, &stop, &step); in get_indices()