Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DSuperFloppyFormatter.java91 private int reservedSectors; field in SuperFloppyFormatter
172 bs.setNrReservedSectors(reservedSectors); in initBootSector()
276 totalSectors - (this.reservedSectors + rootDirSectors); in sectorsPerFat()
352 this.reservedSectors = 1; in setFatType()
356 this.reservedSectors = 32; in setFatType()
390 if (this.reservedSectors != 32) throw new IllegalStateException( in sectorsPerCluster32()
424 if (this.reservedSectors != 1) throw new IllegalStateException( in sectorsPerCluster16()
DBootSector.java106 final int reservedSectors = bb.getShort(RESERVED_SECTORS_OFFSET); in read() local
108 final long dataSectors = totalSectors - (reservedSectors + in read()