Searched refs:PyBuffer_GetPointer (Results 1 – 6 of 6) sorted by relevance
/external/python/cpython2/Objects/ |
D | abstract.c | 430 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()
|
D | memoryobject.c | 207 ptr = PyBuffer_GetPointer(view, indices); in _indirect_copy_nd()
|
/external/python/cpython3/Objects/ |
D | abstract.c | 451 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/ |
D | abstract.h | 552 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
|
/external/python/cpython3/Include/ |
D | abstract.h | 525 PyAPI_FUNC(void *) PyBuffer_GetPointer(Py_buffer *view, Py_ssize_t *indices);
|
/external/python/cpython3/Modules/ |
D | _testbuffer.c | 2346 ptr = PyBuffer_GetPointer(&view, indices); in get_pointer()
|