Home
last modified time | relevance | path

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

/third_party/python/Include/cpython/
Dobject.h86 #define PyBUF_CONTIG (PyBUF_ND | PyBUF_WRITABLE) macro
/third_party/python/Python/
Dmarshal.c671 if (PyBuffer_FillInfo(&buf, NULL, p->buf, n, 0, PyBUF_CONTIG) == -1) in r_string()
/third_party/python/Lib/test/
Dtest_buffer.py1031 PyBUF_CONTIG, PyBUF_CONTIG_RO,
1462 nd = ndarray(ex, getbuf=PyBUF_CONTIG)
1491 nd = ndarray(ex, getbuf=PyBUF_CONTIG|PyBUF_FORMAT)
2134 PyBUF_CONTIG, PyBUF_CONTIG_RO,
/third_party/python/Doc/c-api/
Dbuffer.rst335 | .. c:macro:: PyBUF_CONTIG | yes | NULL | NULL | C | 0 | NULL |
/third_party/python/Modules/_io/
Dbufferedio.c1465 if (PyBuffer_FillInfo(&buf, NULL, start, len, 0, PyBUF_CONTIG) == -1) in _bufferedreader_raw_read()
/third_party/python/Modules/
D_testbuffer.c2884 PyModule_AddIntMacro(m, PyBUF_CONTIG); in PyInit__testbuffer()