Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat.java47 private final int lastClusterIndex; field in Fat
132 this.lastClusterIndex = (int) bs.getDataClusterCount() + FIRST_CLUSTER; in Fat()
137 if (lastClusterIndex > entries.length) throw new IOException( in Fat()
138 "file system has " + lastClusterIndex + in Fat()
281 for (i = lastAllocatedCluster; i < lastClusterIndex; i++) { in allocNew()
299 "FAT Full (" + (lastClusterIndex - FIRST_CLUSTER) in allocNew()
304 lastAllocatedCluster = entryIndex % lastClusterIndex; in allocNew()
325 for (int i=FIRST_CLUSTER; i < lastClusterIndex; i++) { in getFreeClusterCount()
400 if (this.lastClusterIndex != other.lastClusterIndex) return false; in equals()
415 hash = 23 * hash + this.lastClusterIndex; in hashCode()