Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dobject.h81 #define PyBUF_C_CONTIGUOUS (0x0020 | PyBUF_STRIDES) macro
/third_party/python/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()
/third_party/python/Objects/
Dmemoryobject.c232 #define REQ_C_CONTIGUOUS(flags) ((flags&PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS)
/third_party/python/Doc/c-api/
Dbuffer.rst298 | .. c:macro:: PyBUF_C_CONTIGUOUS | yes | yes | NULL | C |
/third_party/python/Lib/test/
Dtest_buffer.py981 (match(req, PyBUF_C_CONTIGUOUS) and not ex.c_contiguous) or
1026 PyBUF_C_CONTIGUOUS, PyBUF_F_CONTIGUOUS, PyBUF_ANY_CONTIGUOUS,
1110 self.assertRaises(BufferError, ndarray, ex, getbuf=PyBUF_C_CONTIGUOUS)
/third_party/python/Doc/whatsnew/
D2.6.rst1145 * :const:`PyBUF_C_CONTIGUOUS` and :const:`PyBUF_F_CONTIGUOUS`