Home
last modified time | relevance | path

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

/aosp_15_r20/external/python/cpython2/Include/
Dmemoryobject.h54 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/external/python/cpython3/Include/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/include/python3.11/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/include/python3.11/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/include/python3.11/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/include/python3.11/
Dmemoryobject.h23 PyAPI_FUNC(PyObject *) PyMemoryView_FromObject(PyObject *base);
/aosp_15_r20/external/python/cpython2/Objects/
Dmemoryobject.c73 PyMemoryView_FromObject(PyObject *base) in PyMemoryView_FromObject() function
110 return PyMemoryView_FromObject(obj); in memory_new()
/aosp_15_r20/external/python/cpython3/Doc/c-api/
Dmemoryview.rst16 .. c:function:: PyObject *PyMemoryView_FromObject(PyObject *obj)
/aosp_15_r20/external/python/cpython3/Objects/
Dpicklebufobject.c162 PyObject *m = PyMemoryView_FromObject((PyObject *) self); in picklebuf_raw()
Dmemoryobject.c786 PyMemoryView_FromObject(PyObject *v) in PyMemoryView_FromObject() function
927 mv = (PyMemoryViewObject *)PyMemoryView_FromObject(obj); in PyMemoryView_GetContiguous()
969 return PyMemoryView_FromObject(object); in memoryview_impl()
/aosp_15_r20/external/python/cpython2/Misc/NEWS.d/
D2.7a3.rst29 Fix a crash in ``PyMemoryView_FromObject()`` when ``PyObject_GetBuffer()``
/aosp_15_r20/external/python/cpython3/Modules/_io/
Dbytesio.c329 view = PyMemoryView_FromObject((PyObject *) buf); in _io_BytesIO_getbuffer_impl()
/aosp_15_r20/external/python/cpython3/PC/
Dpython3dll.c368 EXPORT_FUNC(PyMemoryView_FromObject)
/aosp_15_r20/external/python/cpython3/Doc/data/
Dstable_abi.dat390 function,PyMemoryView_FromObject,3.2,,
Drefcounts.dat1294 PyMemoryView_FromObject:PyObject*::+1:
1295 PyMemoryView_FromObject:PyObject*:obj:0:
Dpython3.11.abi415 …<elf-symbol name='PyMemoryView_FromObject' type='func-type' binding='global-binding' visibility='d…
9059PyMemoryView_FromObject' mangled-name='PyMemoryView_FromObject' filepath='Objects/memoryobject.c' …
/aosp_15_r20/external/python/cpython2/Doc/c-api/
Dbuffer.rst303 .. c:function:: PyObject *PyMemoryView_FromObject(PyObject *obj)
/aosp_15_r20/external/python/cpython2/Modules/
D_testcapimodule.c371 res = PyMemoryView_FromObject(obj); in test_broken_memoryview()
/aosp_15_r20/external/python/cpython3/Misc/
Dstable_abi.toml994 [function.PyMemoryView_FromObject]
/aosp_15_r20/external/python/cpython3/Modules/_ctypes/
D_ctypes.c628 mv = PyMemoryView_FromObject(obj); in CDataType_from_buffer()
/aosp_15_r20/external/python/cpython3/Modules/
D_pickle.c5617 PyObject *view = PyMemoryView_FromObject(obj); in load_readonly_buffer()