Lines Matching refs:suboffsets
161 and :c:member:`~Py_buffer.suboffsets` MUST be ``NULL``.
192 .. c:member:: Py_ssize_t *suboffsets
195 If ``suboffsets[n] >= 0``, the values stored along the nth dimension are
201 If all suboffsets are negative (i.e. no de-referencing is needed), then
208 The suboffsets array is read-only for the consumer.
214 about whether or not the shape, strides, and suboffsets arrays must be
262 shape, strides, suboffsets
272 | Request | shape | strides | suboffsets |
296 | Request | shape | strides | suboffsets | contig |
321 | Request | shape | strides | suboffsets | contig | readonly | format |
397 PIL-style: shape, strides and suboffsets
404 ``char (*v[2])[2][3]``. In suboffsets representation, those two pointers
411 and suboffsets::
414 Py_ssize_t *suboffsets, Py_ssize_t *indices) {
419 if (suboffsets[i] >=0 ) {
420 pointer = *((char**)pointer) + suboffsets[i];