Home
last modified time | relevance | path

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

/external/python/cpython3/Include/cpython/
Dmemoryobject.h41 static inline Py_buffer* PyMemoryView_GET_BUFFER(PyObject *op) { in PyMemoryView_GET_BUFFER() function
44 #define PyMemoryView_GET_BUFFER(op) PyMemoryView_GET_BUFFER(_PyObject_CAST(op)) macro
/external/python/cpython3/Doc/c-api/
Dmemoryview.rst65 .. c:function:: Py_buffer *PyMemoryView_GET_BUFFER(PyObject *mview)
/external/python/cpython3/Doc/data/
Drefcounts.dat1363 PyMemoryView_GET_BUFFER:Py_buffer*:::
1364 PyMemoryView_GET_BUFFER:PyObject*:mview:0:
/external/python/cpython3/Modules/
D_pickle.c5580 if (!PyMemoryView_GET_BUFFER(view)->readonly) { in load_readonly_buffer()
5582 PyMemoryView_GET_BUFFER(view)->readonly = 1; in load_readonly_buffer()
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c801 buffer = PyMemoryView_GET_BUFFER(mv); in CDataType_from_buffer_impl()
/external/python/cpython3/Misc/
DHISTORY16448 PyMemoryView_GET_BUFFER() to access useful properties of a memory views
16450 PyMemoryView() function (PyMemoryView_GET_BUFFER() can be used instead).