Home
last modified time | relevance | path

Searched refs:PyBUF_WRITABLE (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Include/
Dobject.h186 #define PyBUF_WRITABLE 0x0001 macro
188 #define PyBUF_WRITEABLE PyBUF_WRITABLE
197 #define PyBUF_CONTIG (PyBUF_ND | PyBUF_WRITABLE)
200 #define PyBUF_STRIDED (PyBUF_STRIDES | PyBUF_WRITABLE)
203 #define PyBUF_RECORDS (PyBUF_STRIDES | PyBUF_WRITABLE | PyBUF_FORMAT)
206 #define PyBUF_FULL (PyBUF_INDIRECT | PyBUF_WRITABLE | PyBUF_FORMAT)
/external/python/cpython2/Doc/c-api/
Dbuffer.rst183 | :c:macro:`PyBUF_WRITABLE` | The returned buffer must be writable. If it is |
237 | | PyBUF_WRITABLE)``. |
243 | | PyBUF_FORMAT | PyBUF_WRITABLE)``. |
249 | | PyBUF_FORMAT | PyBUF_WRITABLE)``. |
255 | | PyBUF_WRITABLE)``. |
/external/python/cpython2/Objects/
Dabstract.c684 if (((flags & PyBUF_WRITABLE) == PyBUF_WRITABLE) && in PyBuffer_FillInfo()
/external/python/cpython2/Python/
Dgetargs.c1306 if (pb->bf_getbuffer(arg, (Py_buffer*)p, PyBUF_WRITABLE) < 0) { in convertsimple()
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1137 * :const:`PyBUF_WRITABLE` indicates that the memory must be writable.