Lines Matching refs:_iter
165 const from_type *_iter = (from_type *)(begin); \
167 Py_ssize_t n = (_end) - (_iter); \
169 _iter + _Py_SIZE_ROUND_DOWN(n, 4); \
170 while (_iter < (_unrolled_end)) { \
171 _to[0] = (to_type) _iter[0]; \
172 _to[1] = (to_type) _iter[1]; \
173 _to[2] = (to_type) _iter[2]; \
174 _to[3] = (to_type) _iter[3]; \
175 _iter += 4; _to += 4; \
177 while (_iter < (_end)) \
178 *_to++ = (to_type) *_iter++; \