Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
DInit.c321 Volume->MaxCluster = (Sectors - FirstClusterLba) >> SectorsPerClusterAlignment; in FatOpenDevice()
329 if (Volume->MaxCluster >= FAT_MAX_FAT16_CLUSTER) { in FatOpenDevice()
333 FatType = Volume->MaxCluster < FAT_MAX_FAT12_CLUSTER ? Fat12 : Fat16; in FatOpenDevice()
340 if (Volume->MaxCluster < FAT_MAX_FAT16_CLUSTER) { in FatOpenDevice()
372 Volume->FatInfoSector.FreeInfo.ClusterCount <= Volume->MaxCluster in FatOpenDevice()
382 Volume->FatInfoSector.FreeInfo.NextCluster > Volume->MaxCluster + 1 in FatOpenDevice()
DFileSpace.c40 if (Index > (Volume->MaxCluster + 1)) { in FatLoadFatEntry()
103 if (Index > (Volume->MaxCluster + 1)) { in FatGetFatEntry()
293 if (Volume->FatInfoSector.FreeInfo.NextCluster > (Volume->MaxCluster + 1)) { in FatAllocateCluster()
299 if (Volume->FatInfoSector.FreeInfo.NextCluster > (Volume->MaxCluster + 1)) { in FatAllocateCluster()
721 for (Index = Volume->MaxCluster + 1; Index >= FAT_MIN_CLUSTER; Index--) { in FatComputeFreeInfo()
DInfo.c152 Info->VolumeSize = LShiftU64 (Volume->MaxCluster, ClusterAlignment); in FatGetVolumeInfo()
DFat.h330 UINTN MaxCluster; // Max cluster number member
/device/linaro/bootloader/edk2/FatPkg/FatPei/
DFatLiteAccess.c158 Volume->MaxCluster = (UINT32) (Sectors - FirstClusterLba) / Bpb.SectorsPerCluster; in FatGetBpbInfo()
166 if (Volume->MaxCluster >= 65525) { in FatGetBpbInfo()
170 Volume->FatType = Volume->MaxCluster < 4085 ? Fat12 : Fat16; in FatGetBpbInfo()
DFatLitePeim.h92 UINTN MaxCluster; member