HomeSort by relevance Sort by last modified time
    Searched defs:sectorSize (Results 1 - 8 of 8) sorted by null

  /external/gptfdisk/
bsd.h 65 uint32_t sectorSize; // # of bytes per sector
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/util/
RamDisk.java 41 private final int sectorSize;
76 private RamDisk(ByteBuffer buffer, int sectorSize) {
78 this.sectorSize = sectorSize;
98 * @param sectorSize the sector size of the new block device
100 public RamDisk(int size, int sectorSize) {
101 if (sectorSize < 1) throw new IllegalArgumentException(
104 this.sectorSize = sectorSize;
170 return this.sectorSize;
    [all...]
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
Fat.java 43 private final int sectorSize;
121 this.sectorSize = bs.getBytesPerSector();
134 entries = new long[(int) ((sectorCount * sectorSize) /
178 final byte[] data = new byte[sectorCount * sectorSize];
196 final byte[] data = new byte[sectorCount * sectorSize];
399 if (this.sectorSize != other.sectorSize) return false;
414 hash = 23 * hash + this.sectorSize;
468 sb.append(", sectorSize=");
469 sb.append(sectorSize);
    [all...]
SuperFloppyFormatter.java 189 final int sectorSize = device.getSectorSize();
190 final int totalSectors = (int)(device.getSize() / sectorSize);
312 public static int clusterSizeFromSize(long sizeInBytes, int sectorSize){
315 return sectorsPerCluster12(sizeInBytes, sectorSize);
317 return sectorsPerCluster16FromSize(sizeInBytes, sectorSize);
319 return sectorsPerCluster32FromSize(sizeInBytes, sectorSize);
376 static private int sectorsPerCluster32FromSize(long size, int sectorSize) {
377 final long sectors = size / sectorSize;
406 static private int sectorsPerCluster16FromSize(long size, int sectorSize) {
407 final long sectors = size / sectorSize;
    [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/fat32lib/unspecified/
fat32lib-unspecified.jar 
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 549 milliseconds