Home
last modified time | relevance | path

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

/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()
/external/python/cpython3/Objects/
Dabstract.c451 PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices) in PyBuffer_GetPointer() function
540 ptr = PyBuffer_GetPointer(view, indices); in PyBuffer_FromContiguous()
610 dptr = PyBuffer_GetPointer(&view_dest, indices); in PyObject_CopyData()
611 sptr = PyBuffer_GetPointer(&view_src, indices); in PyObject_CopyData()
/external/python/cpython2/Include/
Dabstract.h552 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
/external/python/cpython3/Include/
Dabstract.h525 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
/external/python/cpython3/Modules/
D_testbuffer.c2346 ptr = PyBuffer_GetPointer(&view, indices); in get_pointer()