/external/python/cpython2/Python/ |
D | getargs.c | 856 PyBuffer_FillInfo(p, arg, in convertsimple() 866 PyBuffer_FillInfo(p, arg, in convertsimple() 936 PyBuffer_FillInfo(p, NULL, NULL, 0, 1, 0); in convertsimple() 938 PyBuffer_FillInfo(p, arg, in convertsimple() 948 PyBuffer_FillInfo(p, arg, in convertsimple() 1330 PyBuffer_FillInfo((Py_buffer*)p, arg, res, count, 1, 0); in convertsimple() 1439 PyBuffer_FillInfo(view, arg, buf, count, 1, 0); in getbuffer()
|
/external/python/cpython3/Doc/data/ |
D | refcounts.dat | 53 PyBuffer_FillInfo:int::: 54 PyBuffer_FillInfo:Py_buffer*:view:: 55 PyBuffer_FillInfo:PyObject*:exporter:0: 56 PyBuffer_FillInfo:void*:buf:: 57 PyBuffer_FillInfo:Py_ssize_t:len:: 58 PyBuffer_FillInfo:int:readonly:: 59 PyBuffer_FillInfo:int:flags::
|
/external/python/cpython2/Include/ |
D | abstract.h | 608 PyAPI_FUNC(int) PyBuffer_FillInfo(Py_buffer *view, PyObject *o, void *buf,
|
/external/python/cpython3/Include/ |
D | abstract.h | 571 PyAPI_FUNC(int) PyBuffer_FillInfo(Py_buffer *view, PyObject *o, void *buf,
|
/external/python/cpython3/Modules/_io/ |
D | bytesio.c | 1063 (void)PyBuffer_FillInfo(view, (PyObject*)obj, in bytesiobuf_getbuffer()
|
D | bufferedio.c | 1468 if (PyBuffer_FillInfo(&buf, NULL, start, len, 0, PyBUF_CONTIG) == -1) in _bufferedreader_raw_read() 1815 if (PyBuffer_FillInfo(&buf, NULL, start, len, 1, PyBUF_CONTIG_RO) == -1) in _bufferedwriter_raw_write()
|
/external/python/cpython2/Objects/ |
D | bufferobject.c | 830 return PyBuffer_FillInfo(buf, (PyObject*)self, ptr, size, in buffer_getbuffer()
|
D | bytearrayobject.c | 116 ret = PyBuffer_FillInfo(view, (PyObject*)obj, ptr, Py_SIZE(obj), 0, flags); in bytearray_getbuffer()
|
D | bytesobject.c | 1734 return PyBuffer_FillInfo(view, (PyObject*)self, (void *)self->ob_sval, Py_SIZE(self), in bytes_buffer_getbuffer()
|
D | abstract.c | 680 PyBuffer_FillInfo(Py_buffer *view, PyObject *obj, void *buf, Py_ssize_t len, in PyBuffer_FillInfo() function
|
D | stringobject.c | 1407 return PyBuffer_FillInfo(view, (PyObject*)self, in string_buffer_getbuffer()
|
/external/python/cpython3/Doc/c-api/ |
D | buffer.rst | 110 :c:func:`PyMemoryView_FromBuffer` or :c:func:`PyBuffer_FillInfo` 492 .. c:function:: int PyBuffer_FillInfo(Py_buffer *view, PyObject *exporter, void *buf, Py_ssize_t le…
|
D | typeobj.rst | 1330 :c:func:`PyBuffer_FillInfo` provides an easy way of exposing a simple
|
/external/python/cpython2/Modules/_io/ |
D | bufferedio.c | 1289 if (PyBuffer_FillInfo(&buf, NULL, start, len, 0, PyBUF_CONTIG) == -1) in _bufferedreader_raw_read() 1713 if (PyBuffer_FillInfo(&buf, NULL, start, len, 1, PyBUF_CONTIG_RO) == -1) in _bufferedwriter_raw_write()
|
/external/python/cpython3/Python/ |
D | getargs.c | 974 PyBuffer_FillInfo(p, NULL, NULL, 0, 1, 0); in convertsimple() 981 PyBuffer_FillInfo(p, arg, (void *)sarg, len, 1, 0); in convertsimple()
|
D | marshal.c | 710 if (PyBuffer_FillInfo(&buf, NULL, p->buf, n, 0, PyBUF_CONTIG) == -1) in r_string()
|
/external/python/cpython3/Modules/ |
D | mmapmodule.c | 730 if (PyBuffer_FillInfo(view, (PyObject*)self, self->data, self->size, in mmap_buffer_getbuf()
|
D | _testcapimodule.c | 2961 if (PyBuffer_FillInfo(&info, NULL, NULL, 1, 1, PyBUF_FULL_RO) < 0) in make_memoryview_from_NULL_pointer() 3028 ret = PyBuffer_FillInfo(NULL, NULL, dummy, 1, 0, PyBUF_SIMPLE); in test_pep3118_obsolete_write_locks()
|
/external/python/cpython2/Doc/c-api/ |
D | buffer.rst | 288 .. c:function:: int PyBuffer_FillInfo(Py_buffer *view, PyObject *obj, void *buf, Py_ssize_t len, in…
|
/external/python/cpython3/Objects/ |
D | bytearrayobject.c | 73 (void)PyBuffer_FillInfo(view, (PyObject*)obj, ptr, Py_SIZE(obj), 0, flags); in bytearray_getbuffer()
|
D | abstract.c | 645 PyBuffer_FillInfo(Py_buffer *view, PyObject *obj, void *buf, Py_ssize_t len, in PyBuffer_FillInfo() function
|
D | memoryobject.c | 733 (void)PyBuffer_FillInfo(&mbuf->master, NULL, mem, size, readonly, in PyMemoryView_FromMemory()
|
D | bytesobject.c | 1727 return PyBuffer_FillInfo(view, (PyObject*)self, (void *)self->ob_sval, Py_SIZE(self), in bytes_buffer_getbuffer()
|
D | unicodeobject.c | 3232 if (PyBuffer_FillInfo(&info, NULL, (void *)s, size, 1, PyBUF_FULL_RO) < 0) in PyUnicode_Decode()
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.5.0a1.rst | 5118 Remove obsolete support for view==NULL in PyBuffer_FillInfo(),
|