Home | History | Annotate | Download | only in hw

Lines Matching refs:cylinders

207     int cylinders, heads, sectors;
208 bdrv_get_geometry_hint(hd, &cylinders, &heads, &sectors);
210 rtc_set_memory(s, info_ofs, cylinders);
211 rtc_set_memory(s, info_ofs + 1, cylinders >> 8);
216 rtc_set_memory(s, info_ofs + 6, cylinders);
217 rtc_set_memory(s, info_ofs + 7, cylinders >> 8);
370 int cylinders, heads, sectors, translation;
373 <= heads <= 16, 1 <= cylinders <= 16383. The BIOS
377 bdrv_get_geometry_hint(hd_table[i], &cylinders, &heads, &sectors);
378 if (cylinders <= 1024 && heads <= 16 && sectors <= 63) {