Home
last modified time | relevance | path

Searched refs:PyBUF_C_CONTIGUOUS (Results 1 – 9 of 9) sorted by relevance

/external/python/cpython2/Include/
Dobject.h192 #define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES) macro
/external/python/cpython3/Include/
Dobject.h211 #define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES) macro
/external/python/cpython3/Modules/
D_testbuffer.c75 #define REQ_C_CONTIGUOUS(flags) ((flags&PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS)
2875 PyModule_AddIntMacro(m, PyBUF_C_CONTIGUOUS); in PyInit__testbuffer()
/external/python/cpython3/Objects/
Dmemoryobject.c216 #define REQ_C_CONTIGUOUS(flags) ((flags&PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS)
/external/python/cpython2/Doc/c-api/
Dbuffer.rst206 |:c:macro:`PyBUF_C_CONTIGUOUS` | These flags indicate that the contiguity returned |
/external/python/cpython3/Doc/c-api/
Dbuffer.rst298 | .. c:macro:: PyBUF_C_CONTIGUOUS | yes | yes | NULL | C |
/external/python/cpython3/Lib/test/
Dtest_buffer.py954 (match(req, PyBUF_C_CONTIGUOUS) and not ex.c_contiguous) or
999 PyBUF_C_CONTIGUOUS, PyBUF_F_CONTIGUOUS, PyBUF_ANY_CONTIGUOUS,
1083 self.assertRaises(BufferError, ndarray, ex, getbuf=PyBUF_C_CONTIGUOUS)
/external/python/cpython2/Doc/whatsnew/
D2.6.rst1141 * :const:`PyBUF_C_CONTIGUOUS` and :const:`PyBUF_F_CONTIGUOUS`
/external/python/cpython3/Doc/whatsnew/
D2.6.rst1145 * :const:`PyBUF_C_CONTIGUOUS` and :const:`PyBUF_F_CONTIGUOUS`