HomeSort by relevance Sort by last modified time
    Searched defs:total_sectors (Results 1 - 7 of 7) sorted by null

  /external/blktrace/btt/
seek.c 41 double total_sectors; member in struct:seeki
216 sip->total_sectors = 0.0;
266 sip->total_sectors += dist;
280 return sip->total_sectors / sip->tot_seeks;
  /external/grub/stage2/
bios.c 71 if (sector >= geometry->total_sectors)
95 geometry->total_sectors = (geometry->cylinders
162 geometry->total_sectors = MAXINT;
174 geometry->total_sectors = (geometry->cylinders
197 unsigned long total_sectors = 0;
217 unsigned long long total_sectors;
260 change the type of TOTAL_SECTORS to unsigned long
262 if (drp.total_sectors)
263 total_sectors = drp.total_sectors & ~0L
195 unsigned long total_sectors = 0; local
215 unsigned long long total_sectors; member in struct:drive_parameters
    [all...]
shared.h 639 stored in TOTAL_SECTORS. */
649 unsigned long total_sectors; member in struct:geometry
  /external/qemu/block/
vpc.c 182 bs->total_sectors = (int64_t)
342 if ((sector_num < 0) || (sector_num > bs->total_sectors))
435 * Note that the geometry doesn't always exactly match total_sectors but
440 static int calculate_geometry(int64_t total_sectors, uint16_t* cyls,
445 if (total_sectors > 65535 * 16 * 255)
448 if (total_sectors > 65535 * 16 * 63) {
451 cyls_times_heads = total_sectors / *secs_per_cyl;
454 cyls_times_heads = total_sectors / *secs_per_cyl;
463 cyls_times_heads = total_sectors / *secs_per_cyl;
469 cyls_times_heads = total_sectors / *secs_per_cyl
491 int64_t total_sectors = 0; local
    [all...]
vvfat.c 219 uint32_t total_sectors; member in struct:bootsector_t
974 bootsector->total_sectors=cpu_to_le32(s->sector_count>0xffff?s->sector_count:0);
1066 bs->total_sectors=bs->cyls*bs->heads*bs->secs;
    [all...]
  /external/qemu/
block_int.h 116 int64_t total_sectors; /* if we are reading a disk image, give its member in struct:BlockDriverState
149 /* Whether the disk can expand beyond total_sectors */
block.c 432 bs->total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
518 int64_t i, total_sectors; local
533 total_sectors = bdrv_getlength(bs) >> SECTOR_BITS;
534 for (i = 0; i < total_sectors;) {
734 return bs->total_sectors * SECTOR_SIZE;
1049 if (sector_num >= bs->total_sectors) {
1053 n = bs->total_sectors - sector_num;
    [all...]

Completed in 122 milliseconds