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

  /src/usr.sbin/sysinst/
mbr.c 837 int xcylinders = pm->dlcyl; local in function:guess_biosgeom_from_parts
841 if (xcylinders > MAXCYL || xheads > MAXHEAD || xsectors > MAXSECTOR) {
844 xcylinders = xsize / (MAXSECTOR * MAXHEAD);
845 if (xcylinders > MAXCYL)
846 xcylinders = MAXCYL;
848 *cyl = xcylinders;
2476 int xcylinders, xheads, i, j; local in function:mbr_guess_geom
2513 xcylinders = xsize / xheads / xsectors;
2514 if (xsize != xcylinders * xheads * xsectors)
2515 xcylinders++
    [all...]
  /src/sbin/fdisk/
fdisk.c 1624 uint32_t xcylinders; local in function:intuit_translated_geometry
1693 xcylinders = disklabel.d_secperunit / xheads / xsectors;
1694 if (disklabel.d_secperunit > xcylinders * xheads * xsectors)
1695 xcylinders++;
1716 if (xcylinders > MAXCYL)
1719 dos_cylinders = xcylinders;

Completed in 81 milliseconds