Home
last modified time | relevance | path

Searched refs:PyBuffer_GetPointer (Results 1 – 17 of 17) sorted by relevance

/aosp_15_r20/external/python/cpython3/Include/
Dpybuffer.h48 PyAPI_FUNC(void *) PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dpybuffer.h48 PyAPI_FUNC(void *) PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dpybuffer.h48 PyAPI_FUNC(void *) PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dpybuffer.h48 PyAPI_FUNC(void *) PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dpybuffer.h48 PyAPI_FUNC(void *) PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices);
/aosp_15_r20/external/python/cpython2/Objects/
Dabstract.c430 PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices) in PyBuffer_GetPointer() function
524 ptr = PyBuffer_GetPointer(view, indices); in PyBuffer_ToContiguous()
575 ptr = PyBuffer_GetPointer(view, indices); in PyBuffer_FromContiguous()
645 dptr = PyBuffer_GetPointer(&view_dest, indices); in PyObject_CopyData()
646 sptr = PyBuffer_GetPointer(&view_src, indices); in PyObject_CopyData()
Dmemoryobject.c207 ptr = PyBuffer_GetPointer(view, indices); in _indirect_copy_nd()
/aosp_15_r20/external/python/cpython3/Objects/
Dabstract.c479 PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices) in PyBuffer_GetPointer() function
611 ptr = PyBuffer_GetPointer(view, indices); in PyBuffer_FromContiguous()
681 dptr = PyBuffer_GetPointer(&view_dest, indices); in PyObject_CopyData()
682 sptr = PyBuffer_GetPointer(&view_src, indices); in PyObject_CopyData()
/aosp_15_r20/external/python/cpython2/Include/
Dabstract.h552 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/
D3.11.0a4.rst1140 :c:func:`PyBuffer_GetPointer`, :c:func:`PyBuffer_FromContiguous`,
1145 :c:func:`PyBuffer_GetPointer` takes the strides as ``const Py_ssize_t *``.
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c101 EXPORT_FUNC(PyBuffer_GetPointer)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat16 function,PyBuffer_GetPointer,3.11,,
Dpython3.11.abi23 …<elf-symbol name='PyBuffer_GetPointer' type='func-type' binding='global-binding' visibility='defau…
6756PyBuffer_GetPointer' mangled-name='PyBuffer_GetPointer' filepath='Objects/abstract.c' line='479' c…
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dbuffer.rst480 .. c:function:: void* PyBuffer_GetPointer(const Py_buffer *view, const Py_ssize_t *indices)
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml2253 [function.PyBuffer_GetPointer]
/aosp_15_r20/external/python/cpython3/Modules/
D_testbuffer.c2346 ptr = PyBuffer_GetPointer(&view, indices); in get_pointer()
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/
D3.11.rst2217 * :c:func:`PyBuffer_GetPointer`