Searched refs:PyMemoryView_FromMemory (Results 1 – 13 of 13) sorted by relevance
| /external/python/cpython3/Doc/c-api/ |
| D | memoryview.rst | 23 .. c:function:: PyObject *PyMemoryView_FromMemory(char *mem, Py_ssize_t size, int flags) 33 For simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the preferred 62 :c:func:`PyMemoryView_FromMemory` or :c:func:`PyMemoryView_FromBuffer`.
|
| /external/python/cpython3/Include/ |
| D | memoryobject.h | 25 PyAPI_FUNC(PyObject *) PyMemoryView_FromMemory(char *mem, Py_ssize_t size,
|
| /external/trace-cmd/python/ |
| D | ctracecmd.i | 114 return PyMemoryView_FromMemory(buf, len, PyBUF_READ);
|
| /external/python/cpython3/Modules/ |
| D | _testbuffer.c | 416 mview = PyMemoryView_FromMemory(ptr, itemsize, PyBUF_WRITE); in pack_single() 585 mview = PyMemoryView_FromMemory(ptr, itemsize, PyBUF_READ); in unpack_single() 714 mview = PyMemoryView_FromMemory(item, base->itemsize, PyBUF_WRITE); in ndarray_as_list()
|
| D | _pickle.c | 1414 PyObject *buf_obj = PyMemoryView_FromMemory(buf, n, PyBUF_WRITE); in _Unpickler_ReadInto()
|
| /external/python/cpython3/Doc/data/ |
| D | refcounts.dat | 1289 PyMemoryView_FromMemory:PyObject*::+1: 1290 PyMemoryView_FromMemory:char*:mem:: 1291 PyMemoryView_FromMemory:Py_ssize_t:size:: 1292 PyMemoryView_FromMemory:int:flags::
|
| D | stable_abi.dat | 377 function,PyMemoryView_FromMemory,3.7,
|
| D | python3.10.abi | 400 …<elf-symbol name='PyMemoryView_FromMemory' type='func-type' binding='global-binding' visibility='d… 9435 …PyMemoryView_FromMemory' mangled-name='PyMemoryView_FromMemory' filepath='Objects/memoryobject.c' …
|
| /external/python/cpython3/PC/ |
| D | python3dll.c | 360 EXPORT_FUNC(PyMemoryView_FromMemory)
|
| /external/python/cpython3/Objects/ |
| D | memoryobject.c | 729 PyMemoryView_FromMemory(char *mem, Py_ssize_t size, int flags) in PyMemoryView_FromMemory() function 1999 x->mview = PyMemoryView_FromMemory(x->item, itemsize, PyBUF_WRITE); in struct_get_unpacker()
|
| /external/python/cpython3/Misc/ |
| D | stable_abi.txt | 1880 function PyMemoryView_FromMemory
|
| /external/python/pybind11/include/pybind11/ |
| D | pytypes.h | 1495 PyObject* ptr = PyMemoryView_FromMemory(
|
| /external/python/cpython3/Doc/whatsnew/ |
| D | 3.3.rst | 2175 * :c:func:`PyMemoryView_FromMemory`
|