Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dmemoryobject.h14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) macro
/external/python/cpython3/Include/
Dmemoryobject.h18 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view) macro
/external/python/cpython3/Doc/c-api/
Dmemoryview.rst51 .. c:function:: Py_buffer *PyMemoryView_GET_BUFFER(PyObject *mview)
/external/python/cpython2/Doc/c-api/
Dbuffer.rst332 .. c:function:: Py_buffer *PyMemoryView_GET_BUFFER(PyObject *obj)
/external/python/cpython3/Doc/data/
Drefcounts.dat1297 PyMemoryView_GET_BUFFER:Py_buffer*:::
1298 PyMemoryView_GET_BUFFER:PyObject*:mview:0:
/external/python/cpython3/Modules/
D_pickle.c5616 if (!PyMemoryView_GET_BUFFER(view)->readonly) { in load_readonly_buffer()
5618 PyMemoryView_GET_BUFFER(view)->readonly = 1; in load_readonly_buffer()
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c612 buffer = PyMemoryView_GET_BUFFER(mv); in CDataType_from_buffer()
/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).