Home
last modified time | relevance | path

Searched refs:VolumeSize (Results 1 – 6 of 6) sorted by relevance

/reactos/base/system/diskpart/
H A Dlist.c233 ULONGLONG VolumeSize; in PrintVolume() local
237 VolumeSize = VolumeEntry->Size.QuadPart; in PrintVolume()
238 if (VolumeSize >= 10737418240) /* 10 GB */ in PrintVolume()
240 VolumeSize = RoundingDivide(VolumeSize, 1073741824); in PrintVolume()
243 else if (VolumeSize >= 10485760) /* 10 MB */ in PrintVolume()
245 VolumeSize = RoundingDivide(VolumeSize, 1048576); in PrintVolume()
250 VolumeSize = RoundingDivide(VolumeSize, 1024); in PrintVolume()
277 VolumeSize, pszSizeUnit); in PrintVolume()
/reactos/modules/rosapps/applications/rosinternals/ntfsinfo/
H A Dntfsinfo.c95 ULONGLONG VolumeSize; in _tmain() local
133 VolumeSize = VolumeInfo.TotalClusters.QuadPart * VolumeInfo.BytesPerCluster; in _tmain()
134 _tprintf(_T("Volume size\t\t: %I64u MB\n"), VolumeSize >> 20); in _tmain()
147 …fo.MftValidDataLength.QuadPart >> 20, (VolumeInfo.MftValidDataLength.QuadPart * 100) / VolumeSize); in _tmain()
/reactos/drivers/filesystems/fastfat/
H A Dread.c799 LBO VolumeSize; local
806 VolumeSize = (LBO) Vcb->Bpb.BytesPerSector *
810 if (StartingLbo >= VolumeSize) {
816 if (ByteCount > VolumeSize - StartingLbo) {
818 ByteCount = RequestedByteCount = (ULONG) (VolumeSize - StartingLbo);
H A Dwrite.c888 LBO VolumeSize; local
895 VolumeSize = (LBO) Int32x32To64( Vcb->Bpb.BytesPerSector,
921 if (!WriteToEof && (StartingLbo < VolumeSize)) {
1013 if (WriteToEof || StartingLbo >= VolumeSize) {
1018 if (ByteCount > VolumeSize - StartingLbo) {
1020 ByteCount = (ULONG) (VolumeSize - StartingLbo);
1042 StartingLbo = VolumeSize;
/reactos/modules/rosapps/drivers/vcdrom/
H A Dvcdrom.c26 LARGE_INTEGER VolumeSize; member
359 DeviceExtension->VolumeSize.QuadPart = FileStdInfo.EndOfFile.QuadPart; in ViMountImage()
706 DiskGeo->SectorsPerTrack = DeviceExtension->VolumeSize.QuadPart >> DeviceExtension->SectorShift; in ViGetDriveGeometry()
833 …DATA_TRACK, ADR_NO_MODE_INFORMATION, TOC_LAST_TRACK, (DeviceExtension->VolumeSize.QuadPart >> Devi… in ViReadToc()
908 …DATA_TRACK, ADR_NO_MODE_INFORMATION, TOC_LAST_TRACK, (DeviceExtension->VolumeSize.QuadPart >> Devi… in ViReadTocEx()
/reactos/boot/environ/lib/io/
H A Detfs.c31 ULONG VolumeSize; member
841 NewContext->VolumeSize = RVD_VOL_SIZE(RawVd, IsIso); in EtfspCreateContext()