Home
last modified time | relevance | path

Searched refs:PyMemoryView_FromObject (Results 1 – 18 of 18) sorted by relevance

/external/python/cpython2/Include/
Dmemoryobject.h54 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/external/python/cpython3/Include/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/external/python/cpython3/Doc/c-api/
Dmemoryview.rst16 .. c:function:: PyObject *PyMemoryView_FromObject(PyObject *obj)
/external/python/cpython3/Objects/
Dpicklebufobject.c162 PyObject *m = PyMemoryView_FromObject((PyObject *) self); in picklebuf_raw()
Dmemoryobject.c788 PyMemoryView_FromObject(PyObject *v) in PyMemoryView_FromObject() function
929 mv = (PyMemoryViewObject *)PyMemoryView_FromObject(obj); in PyMemoryView_GetContiguous()
971 return PyMemoryView_FromObject(object); in memoryview_impl()
/external/python/cpython2/Objects/
Dmemoryobject.c73 PyMemoryView_FromObject(PyObject *base) in PyMemoryView_FromObject() function
110 return PyMemoryView_FromObject(obj); in memory_new()
/external/python/cpython2/Misc/NEWS.d/
D2.7a3.rst29 Fix a crash in ``PyMemoryView_FromObject()`` when ``PyObject_GetBuffer()``
/external/python/cpython3/Modules/_io/
Dbytesio.c329 view = PyMemoryView_FromObject((PyObject *) buf); in _io_BytesIO_getbuffer_impl()
/external/python/pybind11/include/pybind11/
Dpytypes.h1405 PYBIND11_OBJECT_CVT(memoryview, object, PyMemoryView_Check, PyMemoryView_FromObject) in PYBIND11_OBJECT_CVT() argument
1421 PyMemoryView_FromObject(info.view()->obj) : in PYBIND11_OBJECT_CVT()
/external/python/cpython3/Doc/data/
Dstable_abi.dat378 function,PyMemoryView_FromObject,3.2,
Drefcounts.dat1294 PyMemoryView_FromObject:PyObject*::+1:
1295 PyMemoryView_FromObject:PyObject*:obj:0:
Dpython3.10.abi401 …<elf-symbol name='PyMemoryView_FromObject' type='func-type' binding='global-binding' visibility='d…
9441PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' …
10385 …<function-decl name='PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='./I…
/external/python/cpython3/PC/
Dpython3dll.c361 EXPORT_FUNC(PyMemoryView_FromObject)
/external/python/cpython2/Doc/c-api/
Dbuffer.rst303 .. c:function:: PyObject *PyMemoryView_FromObject(PyObject *obj)
/external/python/cpython3/Misc/
Dstable_abi.txt902 function PyMemoryView_FromObject
/external/python/cpython2/Modules/
D_testcapimodule.c371 res = PyMemoryView_FromObject(obj); in test_broken_memoryview()
/external/python/cpython3/Modules/_ctypes/
D_ctypes.c615 mv = PyMemoryView_FromObject(obj); in CDataType_from_buffer()
/external/python/cpython3/Modules/
D_pickle.c5608 PyObject *view = PyMemoryView_FromObject(obj); in load_readonly_buffer()