Lines Matching defs:start
160 static ssize_t dump_range(struct exfat2img *ei, off_t start, off_t end)
170 if (exfat_o2c(ei->exfat, start, &sc, &sc_offset) < 0)
176 return end - start;
179 while (start < end) {
180 len = (size_t)MIN(end - start, exfat->clus_size);
184 len, start);
188 (unsigned long long)start);
193 len, start);
197 (unsigned long long)start);
201 start += len;
377 exfat_debug("start cluster %#x, size %#" PRIx64 "\n",
382 exfat_err("invalid start cluster of allocate bitmap. 0x%x\n",
412 exfat_err("invalid start cluster of upcase table. 0x%x\n",
555 off_t start, off_t end_excl, bool fill_zero)
561 if (start != ei->stdout_offset) {
563 (unsigned long long)start,
568 while (start < end_excl) {
569 len = (size_t)MIN(end_excl - start, exfat->clus_size);
573 len, start);
577 (unsigned long long)start);
585 (unsigned long long)start);
593 (unsigned long long)start);
598 start += len;