Searched refs:sizeInBytes (Results 1 – 1 of 1) sorted by relevance
305 public static FatType fatTypeFromSize(long sizeInBytes) { in fatTypeFromSize() argument306 final long sizeInMb = sizeInBytes / (1024 * 1024); in fatTypeFromSize()312 public static int clusterSizeFromSize(long sizeInBytes, int sectorSize){ in clusterSizeFromSize() argument313 switch(fatTypeFromSize(sizeInBytes)) { in clusterSizeFromSize()315 return sectorsPerCluster12(sizeInBytes, sectorSize); in clusterSizeFromSize()317 return sectorsPerCluster16FromSize(sizeInBytes, sectorSize); in clusterSizeFromSize()319 return sectorsPerCluster32FromSize(sizeInBytes, sectorSize); in clusterSizeFromSize()