Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DSuperFloppyFormatter.java92 private int fatCount; field in SuperFloppyFormatter
104 this.fatCount = DEFAULT_FAT_COUNT; in SuperFloppyFormatter()
173 bs.setNrFats(fatCount); in initBootSector()
277 int tmp2 = (256 * this.sectorsPerCluster) + this.fatCount; in sectorsPerFat()
393 if (this.fatCount != 2) throw new IllegalStateException( in sectorsPerCluster32()
427 if (this.fatCount != 2) throw new IllegalStateException( in sectorsPerCluster16()
DBootSector.java107 final int fatCount = bb.get(FAT_COUNT_OFFSET); in read() local
109 (fatCount * fatSz) + rootDirSectors); in read()