total_sectors     371 src/simh/sim_disk.c     t_lba total_sectors = (t_lba)((uptr->capac*capac_factor)/(ctx->sector_size/((dptr->flags & DEV_SECTORS) ? 512 : 1)));
total_sectors     388 src/simh/sim_disk.c             sim_printf ("\n%s%lu: Write Address Verification Error on lbn %lu(0x%X) of %lu(0x%X).\n", sim_dname (dptr), (unsigned long)(uptr-dptr->units), (unsigned long)((unsigned long)lba+(unsigned long)sect), (int)((int)lba+(int)sect), (unsigned long)total_sectors, (int)total_sectors);
total_sectors     879 src/simh/sim_disk.c         t_lba total_sectors = (t_lba)((uptr->capac*capac_factor)/(sector_size/((dptr->flags & DEV_SECTORS) ? 512 : 1)));
total_sectors     887 src/simh/sim_disk.c         for (lba = 0; (lba < total_sectors) && (r == SCPE_OK); lba += sects) {
total_sectors     889 src/simh/sim_disk.c             if (lba + sects > total_sectors)
total_sectors     890 src/simh/sim_disk.c                 sects = total_sectors - lba;
total_sectors     904 src/simh/sim_disk.c                 sim_printf ("%s%lu: Initialized To Sector Address %luMB.  %lu%% complete.\r", sim_dname (dptr), (unsigned long)(uptr-dptr->units), (unsigned long)((((float)lba)*sector_size)/1000000), (unsigned long)((((float)lba)*100)/total_sectors));
total_sectors     917 src/simh/sim_disk.c     t_lba total_sectors = (t_lba)((uptr->capac*capac_factor)/(sector_size/((dptr->flags & DEV_SECTORS) ? 512 : 1)));
total_sectors     925 src/simh/sim_disk.c     for (lba = 0; (lba < total_sectors) && (r == SCPE_OK); lba += sects) {
total_sectors     927 src/simh/sim_disk.c         if (lba + sects > total_sectors)
total_sectors     928 src/simh/sim_disk.c             sects = total_sectors - lba;
total_sectors     945 src/simh/sim_disk.c                     sim_printf ("\n%s%lu: Verification Error on lbn %lu(0x%X) of %lu(0x%X).\n", sim_dname (dptr), (unsigned long)(uptr-dptr->units), (unsigned long)((unsigned long)lba+(unsigned long)sect), (int)((int)lba+(int)sect), (unsigned long)total_sectors, (int)total_sectors);
total_sectors     955 src/simh/sim_disk.c             sim_printf ("%s%lu: Verified containing Sector Address %luMB.  %lu%% complete.\r", sim_dname (dptr), (unsigned long)(uptr-dptr->units), (unsigned long)((((float)lba)*sector_size)/1000000), (unsigned long)((((float)lba)*100)/total_sectors));