Lines Matching refs:u32
53 pub hidden_sectors: u32,
56 pub total_sectors_32: u32,
83 pub volume_id: u32,
85 pub filesystem_type: u32,
93 pub fat_size_32: u32,
112 pub root_cluster: u32,
137 pub volume_id: u32,
273 let root_sectors = ((bpb.root_entries_cnt as u32 * 32) + (bpb.bytes_per_sector as u32 - 1)) in new()
274 / (bpb.bytes_per_sector as u32); in new()
278 bpb.fat_size_16 as u32 in new()
285 bpb.total_sectors_16 as u32 in new()
292 - ((bpb.rsvd_sec_cnt as u32) + (bpb.num_fats as u32) * fat_size + root_sectors); in new()
294 let count_clusters = data_sectors / (bpb.sector_per_cluster as u32); in new()
350 self.fat_size_16 as u32 in validate()
354 let root_sectors = ((self.root_entries_cnt as u32 * 32) in validate()
355 + (self.bytes_per_sector as u32 - 1)) in validate()
356 / (self.bytes_per_sector as u32); in validate()
360 self.total_sectors_16 as u32 in validate()
366 (self.rsvd_sec_cnt as u32) + (self.num_fats as u32) * fat_size + root_sectors; in validate()
377 pub fn get_volume_id(&self) -> u32 { in get_volume_id() argument