Searched refs:count_clusters (Results 1 – 2 of 2) sorted by relevance
294 let count_clusters = data_sectors / (bpb.sector_per_cluster as u32); in new() localVariable297 bpb.fat_type = if count_clusters < FATFileSystem::FAT12_MAX_CLUSTER { in new()299 } else if count_clusters <= FATFileSystem::FAT16_MAX_CLUSTER { in new()301 } else if count_clusters < FATFileSystem::FAT32_MAX_CLUSTER { in new()
1253 let count_clusters = max_cluster.cluster_num - RESERVED_CLUSTERS as u64 + 1; in count_free_cluster() localVariable1255 if self.free_count as u64 > count_clusters { in count_free_cluster()