Home | History | Annotate | Download | only in fat

Lines Matching refs:clusterSize

35     private final int clusterSize;
66 this.clusterSize = fat.getBootSector().getBytesPerCluster();
70 return clusterSize;
102 ((cluster - Fat.FIRST_CLUSTER) * clusterSize);
113 return getChainLength() * clusterSize;
128 final long nrClusters = ((size + clusterSize - 1) / clusterSize);
134 return clusterSize * nrClusters;
207 int chainIdx = (int) (offset / clusterSize);
208 if (offset % clusterSize != 0) {
209 int clusOfs = (int) (offset % clusterSize);
211 (int) (clusterSize - (offset % clusterSize) - 1));
222 int size = Math.min(clusterSize, len);
256 int chainIdx = (int) (offset / clusterSize);
257 if (offset % clusterSize != 0) {
258 int clusOfs = (int) (offset % clusterSize);
260 (int) (clusterSize - (offset % clusterSize)));
271 int size = Math.min(clusterSize, len);