Lines Matching defs:step
49 sector_t step;
225 "(start %llu, end %llu, step %llu): reads %d, writes %d",
229 (unsigned long long)s->step,
258 sector_t step, unsigned int stat_flags,
278 if (end < start || !step)
282 if (dm_sector_div64(n_entries, step))
312 s->step = step;
488 * <region_id>: <start_sector>+<length> <step> <program_id> <aux_data>
498 (unsigned long long)s->step,
645 offset = dm_sector_div64(rel_sector, s->step);
653 if (fragment_len > s->step - offset)
654 fragment_len = s->step - offset;
851 sector_t start, end, step;
876 step = s->step;
877 start = s->start + (step * idx_start);
881 end = start + step;
889 (unsigned long long)step,
999 unsigned long long start, end, len, step;
1011 * <range> <step> [<extra_parameters> <parameters>] [<program_id> [<aux_data>]]
1039 step = end - start;
1040 if (do_div(step, divisor))
1041 step++;
1042 if (!step)
1043 step = 1;
1044 } else if (sscanf(a, "%llu%c", &step, &dummy) != 1 ||
1045 step != (sector_t)step || !step)
1096 id = dm_stats_create(dm_get_stats(md), start, end, step, stat_flags,