/aosp_15_r20/external/python/cpython3/Objects/ |
D | sliceobject.c | 102 PySliceObject *obj = interp->slice_cache; in _PySlice_Fini() 127 PySliceObject *obj; in PySlice_New() 134 obj = PyObject_GC_New(PySliceObject, &PySlice_Type); in PySlice_New() 174 PySliceObject *r = (PySliceObject*)_r; in PySlice_GetIndices() 206 PySliceObject *r = (PySliceObject*)_r; in PySlice_Unpack() 332 slice_dealloc(PySliceObject *r) in slice_dealloc() 348 slice_repr(PySliceObject *r) in slice_repr() 354 {"start", T_OBJECT, offsetof(PySliceObject, start), READONLY}, 355 {"stop", T_OBJECT, offsetof(PySliceObject, stop), READONLY}, 356 {"step", T_OBJECT, offsetof(PySliceObject, step), READONLY}, [all …]
|
D | rangeobject.c | 343 PySliceObject *slice = (PySliceObject *) _slice; in compute_slice()
|
/aosp_15_r20/external/python/cpython2/Objects/ |
D | sliceobject.c | 63 PySliceObject *obj = PyObject_GC_New(PySliceObject, &PySlice_Type); in PySlice_New() 103 PySlice_GetIndices(PySliceObject *r, Py_ssize_t length, in PySlice_GetIndices() 137 PySliceObject *r = (PySliceObject *)_r; in _PySlice_Unpack() 223 PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length, in PySlice_GetIndicesEx() 262 slice_dealloc(PySliceObject *r) in slice_dealloc() 272 slice_repr(PySliceObject *r) in slice_repr() 289 {"start", T_OBJECT, offsetof(PySliceObject, start), READONLY}, 290 {"stop", T_OBJECT, offsetof(PySliceObject, stop), READONLY}, 291 {"step", T_OBJECT, offsetof(PySliceObject, step), READONLY}, 296 slice_indices(PySliceObject* self, PyObject* len) in slice_indices() [all …]
|
/aosp_15_r20/external/python/cpython2/Include/ |
D | sliceobject.h | 25 } PySliceObject; typedef 35 PyAPI_FUNC(int) PySlice_GetIndices(PySliceObject *r, Py_ssize_t length, 37 PyAPI_FUNC(int) PySlice_GetIndicesEx(PySliceObject *r, Py_ssize_t length,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/ |
D | sliceobject.h | 25 } PySliceObject; typedef 37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/ |
D | sliceobject.h | 25 } PySliceObject; typedef 37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/ |
D | sliceobject.h | 25 } PySliceObject; typedef 37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/ |
D | sliceobject.h | 25 } PySliceObject; typedef 37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
/aosp_15_r20/external/python/cpython3/Include/ |
D | sliceobject.h | 25 } PySliceObject; typedef 37 PyAPI_FUNC(int) _PySlice_GetLongIndices(PySliceObject *self, PyObject *length,
|
/aosp_15_r20/external/pytorch/torch/csrc/autograd/ |
H A D | python_variable_indexing.h | 19 PySliceObject* r = (PySliceObject*)_r; in __PySlice_Unpack()
|
H A D | python_variable_indexing.cpp | 144 PySliceObject* sliceobj = (PySliceObject*)obj; in recordSliceTrace()
|
/aosp_15_r20/external/python/cpython2/Doc/c-api/ |
D | slice.rst | 31 .. c:function:: int PySlice_GetIndices(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start, … 52 .. c:function:: int PySlice_GetIndicesEx(PySliceObject *slice, Py_ssize_t length, Py_ssize_t *start…
|
/aosp_15_r20/external/python/cpython3/Doc/c-api/ |
D | slice.rst | 43 The parameter type for the *slice* parameter was ``PySliceObject*`` 74 The parameter type for the *slice* parameter was ``PySliceObject*``
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/internal/ |
D | pycore_interp.h | 166 PySliceObject *slice_cache;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/internal/ |
D | pycore_interp.h | 166 PySliceObject *slice_cache;
|
/aosp_15_r20/external/python/cpython3/Include/internal/ |
D | pycore_interp.h | 166 PySliceObject *slice_cache;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/internal/ |
D | pycore_interp.h | 166 PySliceObject *slice_cache;
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/internal/ |
D | pycore_interp.h | 166 PySliceObject *slice_cache;
|
/aosp_15_r20/external/python/cpython3/Modules/_ctypes/ |
D | _ctypes.c | 5265 PySliceObject *slice = (PySliceObject *)item; in Pointer_subscript()
|
/aosp_15_r20/external/python/cpython2/Modules/_ctypes/ |
D | _ctypes.c | 5272 PySliceObject *slice = (PySliceObject *)item; in Pointer_subscript()
|
/aosp_15_r20/external/python/cpython2/Modules/ |
D | _testcapimodule.c | 1566 PySliceObject *slice; in get_indices()
|
/aosp_15_r20/external/python/cpython3/Doc/data/ |
D | python3.11.abi | 4835 …<typedef-decl name='PySliceObject' type-id='type-id-393' filepath='./Include/sliceobject.h' line='…
|