Home
last modified time | relevance | path

Searched refs:RootDirSectors (Results 1 – 5 of 5) sorted by relevance

/reactos/sdk/lib/fslib/vfatlib/
H A Dfat12.c172 ULONG RootDirSectors; in Fat12WriteRootDirectory() local
182 RootDirSectors = ((BootSector->RootEntries * 32) + in Fat12WriteRootDirectory()
187 DPRINT("RootDirSectors = %lu\n", RootDirSectors); in Fat12WriteRootDirectory()
201 for (i = 0; i < RootDirSectors; i += Sectors) in Fat12WriteRootDirectory()
206 if ((RootDirSectors - i) <= Sectors) in Fat12WriteRootDirectory()
208 Sectors = RootDirSectors - i; in Fat12WriteRootDirectory()
250 ULONG RootDirSectors; in Fat12Format() local
312 RootDirSectors = ((BootSector.RootEntries * 32) + in Fat12Format()
317 TmpVal1 = SectorCount - (BootSector.ReservedSectors + RootDirSectors); in Fat12Format()
326 1 + (BootSector.FATSectors * 2) + RootDirSectors; in Fat12Format()
H A Dfat16.c174 ULONG RootDirSectors; in Fat16WriteRootDirectory() local
183 RootDirSectors = ((BootSector->RootEntries * 32) + in Fat16WriteRootDirectory()
188 DPRINT("RootDirSectors = %lu\n", RootDirSectors); in Fat16WriteRootDirectory()
202 for (i = 0; i < RootDirSectors; i += Sectors) in Fat16WriteRootDirectory()
207 if ((RootDirSectors - i) <= Sectors) in Fat16WriteRootDirectory()
209 Sectors = RootDirSectors - i; in Fat16WriteRootDirectory()
249 ULONG RootDirSectors; in Fat16Format() local
321 RootDirSectors = ((BootSector.RootEntries * 32) + in Fat16Format()
326 TmpVal1 = SectorCount - (BootSector.ReservedSectors + RootDirSectors); in Fat16Format()
334 1 + (BootSector.FATSectors * 2) + RootDirSectors; in Fat16Format()
/reactos/sdk/lib/fslib/vfatxlib/
H A Dfatx.c299 ULONG RootDirSectors; in FatxWriteRootDirectory() local
302 RootDirSectors = 256 * 64 / 512; in FatxWriteRootDirectory()
305 DPRINT("RootDirSectors = %lu\n", RootDirSectors); in FatxWriteRootDirectory()
311 RootDirSectors * 512); in FatxWriteRootDirectory()
316 memset(Buffer, 0xff, RootDirSectors * 512); in FatxWriteRootDirectory()
327 RootDirSectors * 512, in FatxWriteRootDirectory()
352 ULONG RootDirSectors; in FatxFormat() local
363 RootDirSectors = 256 * 64 / 512; in FatxFormat()
382 1 + FATSectors + RootDirSectors; in FatxFormat()
/reactos/boot/freeldr/freeldr/lib/fs/
H A Dfat.c48 ULONG RootDirSectors; /* Number of sectors of the root directory (non-fat32) */ member
275 Volume->RootDirSectors = FatXVolumeBootSector->SectorsPerCluster; in FatOpenVolume()
277 Volume->DataSectorStart = Volume->RootDirSectorStart + Volume->RootDirSectors; in FatOpenVolume()
289 …Volume->RootDirSectors = ((FatVolumeBootSector->RootDirEntries * 32) + (Volume->BytesPerSector - 1… in FatOpenVolume()
291 Volume->DataSectorStart = Volume->RootDirSectorStart + Volume->RootDirSectors; in FatOpenVolume()
355 ULONG RootDirSectors; in FatDetermineFatType() local
379RootDirSectors = ((SWAPW(FatBootSector->RootDirEntries) * 32) + (SWAPW(FatBootSector->BytesPerSect… in FatDetermineFatType()
382 …(FatBootSector->ReservedSectors) + (FatBootSector->NumberOfFats * SectorsPerFat) + RootDirSectors); in FatDetermineFatType()
458 *DirectorySize = Volume->RootDirSectors * Volume->BytesPerSector; in FatBufferDirectory()
482 …if (!FatReadVolumeSectors(Volume, Volume->RootDirSectorStart, Volume->RootDirSectors, DirectoryBuf… in FatBufferDirectory()
/reactos/sdk/include/reactos/libs/fullfat/
H A Dff_ioman.h150 FF_T_UINT32 RootDirSectors; member