Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Dobject.h193 #define PyBUF_F_CONTIGUOUS (0x0040 | PyBUF_STRIDES) macro
/external/python/cpython3/Include/
Dobject.h212 #define PyBUF_F_CONTIGUOUS (0x0040 | PyBUF_STRIDES) macro
/external/python/cpython3/Modules/
D_testbuffer.c76 #define REQ_F_CONTIGUOUS(flags) ((flags&PyBUF_F_CONTIGUOUS) == PyBUF_F_CONTIGUOUS)
2877 PyModule_AddIntMacro(m, PyBUF_F_CONTIGUOUS); in PyInit__testbuffer()
/external/python/cpython3/Objects/
Dmemoryobject.c215 #define REQ_F_CONTIGUOUS(flags) ((flags&PyBUF_F_CONTIGUOUS) == PyBUF_F_CONTIGUOUS)
/external/python/cpython2/Doc/c-api/
Dbuffer.rst207 |:c:macro:`PyBUF_F_CONTIGUOUS` | buffer must be respectively, C-contiguous (last |
/external/python/cpython3/Doc/c-api/
Dbuffer.rst300 | .. c:macro:: PyBUF_F_CONTIGUOUS | yes | yes | NULL | F |
/external/python/cpython3/Lib/test/
Dtest_buffer.py954 (match(req, PyBUF_F_CONTIGUOUS) and not ex.f_contiguous) or
998 PyBUF_C_CONTIGUOUS, PyBUF_F_CONTIGUOUS, PyBUF_ANY_CONTIGUOUS,
1083 self.assertRaises(BufferError, ndarray, ex, getbuf=PyBUF_F_CONTIGUOUS)
1319 nd = ndarray(ex, getbuf=PyBUF_F_CONTIGUOUS|PyBUF_FORMAT)
/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`