HomeSort by: relevance | last modified time | path
    Searched defs:late_vat_loc (Results 1 - 2 of 2) sorted by relevancy

  /src/sbin/fsck_udf/
main.c 2007 uint32_t vat_loc, early_vat_loc, late_vat_loc, accepted_vat_loc; local in function:udf_search_vat
2050 late_vat_loc = last_possible_vat_location;
2051 early_vat_loc = MAX(late_vat_loc - 16, first_possible_vat_location);
2066 early_vat_loc, late_vat_loc);
2070 while (vat_loc <= late_vat_loc) {
2150 late_vat_loc = accepted_vat_loc - 1;
2152 late_vat_loc = early_vat_loc - 1;
2157 if (late_vat_loc > VAT_BLK)
2158 early_vat_loc = MAX(early_vat_loc, late_vat_loc - VAT_BLK);
2159 } while (late_vat_loc > first_possible_vat_location)
    [all...]
  /src/sys/fs/udf/
udf_subr.c 3079 uint32_t early_vat_loc, late_vat_loc, vat_loc; local in function:udf_search_vat
3092 late_vat_loc = ump->last_possible_vat_location;
3093 early_vat_loc = MAX(late_vat_loc - 64, ump->first_possible_vat_location);
3095 DPRINTF(VOLUMES, ("\tfull range %d to %d\n", early_vat_loc, late_vat_loc));
3100 early_vat_loc, late_vat_loc));
3126 } while (vat_loc <= late_vat_loc);
3131 late_vat_loc = MIN(early_vat_loc + 64, ump->last_possible_vat_location);
3132 } while (late_vat_loc > ump->first_possible_vat_location);

Completed in 22 milliseconds