Home
last modified time | relevance | path

Searched refs:sectorsPerCluster (Results 1 – 2 of 2) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DSuperFloppyFormatter.java90 private int sectorsPerCluster; field in SuperFloppyFormatter
174 bs.setSectorsPerCluster(sectorsPerCluster); in initBootSector()
194 if (sectorsPerCluster == 0) throw new AssertionError(); in format()
277 int tmp2 = (256 * this.sectorsPerCluster) + this.fatCount; in sectorsPerFat()
359 this.sectorsPerCluster = defaultSectorsPerCluster(fatType); in setFatType()
DBootSector.java83 final byte sectorsPerCluster = bb.get(SECTORS_PER_CLUSTER_OFFSET); in read()
85 if (sectorsPerCluster <= 0) throw new IOException( in read()
86 "suspicious sectors per cluster count " + sectorsPerCluster); in read()
111 final long clusterCount = dataSectors / sectorsPerCluster; in read()