Lines Matching defs:cur
1726 size_t cur;
1745 for (cur = start, i = 0; i < slicelen;
1746 cur += step, i++) {
1747 PyObject* item = self->extra->children[cur];
1779 size_t cur;
1797 size_t cur;
1822 * with cur pointing at them. num_moved is the amount of children
1828 for (cur = start, i = 0; cur < (size_t)stop; cur += step, ++i) {
1833 if (cur + step >= (size_t)self->extra->length) {
1834 num_moved = self->extra->length - cur - 1;
1837 PyList_SET_ITEM(recycle, i, self->extra->children[cur]);
1840 self->extra->children + cur - i,
1841 self->extra->children + cur + 1,
1846 cur = start + (size_t)slicelen * step;
1847 if (cur < (size_t)self->extra->length) {
1849 self->extra->children + cur - slicelen,
1850 self->extra->children + cur,
1851 (self->extra->length - cur) * sizeof(PyObject *));
1909 for (cur = start, i = 0; i < slicelen;
1910 cur += step, i++)
1911 PyList_SET_ITEM(recycle, i, self->extra->children[cur]);
1925 for (cur = start, i = 0; i < newlen;
1926 cur += step, i++) {
1929 self->extra->children[cur] = element;