Home
last modified time | relevance | path

Searched refs:PyMemoryView_Check (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Include/
Dmemoryobject.h11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type) macro
/external/python/cpython3/Include/
Dmemoryobject.h14 #define PyMemoryView_Check(op) Py_IS_TYPE(op, &PyMemoryView_Type) macro
/external/python/cpython3/Doc/c-api/
Dmemoryview.rst45 .. c:function:: int PyMemoryView_Check(PyObject *obj)
/external/python/cpython3/Objects/
Dmemoryobject.c798 if (PyMemoryView_Check(v)) { in PyMemoryView_FromObject()
2816 assert(PyMemoryView_Check(v)); in memory_richcompare()
2823 if (PyMemoryView_Check(w)) { in memory_richcompare()
/external/python/cpython2/Doc/c-api/
Dbuffer.rst326 .. c:function:: int PyMemoryView_Check(PyObject *obj)
/external/python/cpython3/Doc/data/
Drefcounts.dat1280 PyMemoryView_Check:int:::
1281 PyMemoryView_Check:PyObject*:obj:0:
/external/python/pybind11/include/pybind11/
Dpytypes.h1405 PYBIND11_OBJECT_CVT(memoryview, object, PyMemoryView_Check, PyMemoryView_FromObject) in PYBIND11_OBJECT_CVT() argument