Lines Matching defs:arrays
56 arrays are NOT writable.
289 to a zero element at the same position. For example, in NumPy arrays
325 /* Base case for recursive multi-dimensional copying. Contiguous arrays are
387 /* Faster copying of one-dimensional arrays. */
2585 Py_ssize_t arrays[3];
2593 dest.shape = &arrays[0]; dest.shape[0] = view->shape[0];
2594 dest.strides = &arrays[1]; dest.strides[0] = view->strides[0];
2596 dest.suboffsets = &arrays[2]; dest.suboffsets[0] = view->suboffsets[0];
2798 /* Recursively compare two multi-dimensional arrays that have the same
3134 "A tuple of integers used internally for PIL-style arrays.");