Searched refs:stride (Results 1 – 4 of 4) sorted by relevance
| /vim-8.2.3635/src/ |
| H A D | evalfunc.c | 7709 varnumber_T stride = 1; in f_range() local 7729 stride = tv_get_number_chk(&argvars[2], &error); in f_range() 7734 if (stride == 0) in f_range() 7736 else if (stride > 0 ? end + 1 < start : end - 1 > start) in f_range() 7748 list->lv_u.nonmat.lv_stride = stride; in f_range() 7749 list->lv_len = (end - start) / stride + 1; in f_range() 7762 int stride = list->lv_u.nonmat.lv_stride; in range_list_materialize() local 7769 for (i = start; stride > 0 ? i <= end : i >= end; i += stride) in range_list_materialize()
|
| H A D | list.c | 2504 int stride = l->lv_u.nonmat.lv_stride; in filter_map() local 2555 val += stride; in filter_map()
|
| /vim-8.2.3635/runtime/doc/ |
| H A D | usr_41.txt | 1538 You can also specify the maximum value, the stride and even go backwards: >
|
| H A D | eval.txt | 2884 range({expr} [, {max} [, {stride}]]) 8765 range({expr} [, {max} [, {stride}]]) *range()* 8769 - If {stride} is specified: [{expr}, {expr} + {stride}, ..., 8770 {max}] (increasing {expr} with {stride} each time, not
|