Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dabstract.h275 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
/third_party/python/Objects/
Dabstract.c477 PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices) in PyBuffer_GetPointer() function
608 ptr = PyBuffer_GetPointer(view, indices); in PyBuffer_FromContiguous()
678 dptr = PyBuffer_GetPointer(&view_dest, indices); in PyObject_CopyData()
679 sptr = PyBuffer_GetPointer(&view_src, indices); in PyObject_CopyData()
/third_party/python/Doc/c-api/
Dbuffer.rst480 .. c:function:: void* PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices)
/third_party/python/Modules/
D_testbuffer.c2346 ptr = PyBuffer_GetPointer(&view, indices); in get_pointer()