Searched refs:PyMemoryView_FromMemory (Results 1 - 6 of 6) sorted by relevance
/third_party/python/Include/ |
H A D | memoryobject.h | 25 PyAPI_FUNC(PyObject *) PyMemoryView_FromMemory(char *mem, Py_ssize_t size,
|
/third_party/python/Modules/ |
H A 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()
|
H A D | _pickle.c | 1424 PyObject *buf_obj = PyMemoryView_FromMemory(buf, n, PyBUF_WRITE); in _Unpickler_ReadInto()
|
/third_party/python/PC/ |
H A D | python3dll.c | 367 EXPORT_FUNC(PyMemoryView_FromMemory)
|
/third_party/python/Objects/ |
H A D | memoryobject.c | 727 PyMemoryView_FromMemory(char *mem, Py_ssize_t size, int flags) in PyMemoryView_FromMemory() function 751 PyMemoryView_FromMemory() should be used instead. 2008 x->mview = PyMemoryView_FromMemory(x->item, itemsize, PyBUF_WRITE); in struct_get_unpacker()
|
/third_party/python/Python/ |
H A D | import.c | 2144 data = PyMemoryView_FromMemory((char *)info.data, info.size, PyBUF_READ); in _imp_find_frozen_impl()
|
Completed in 25 milliseconds