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

  /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/
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...]
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...]
  /external/gptfdisk/
bsd.h 65 uint32_t sectorSize; // # of bytes per sector
support.h 79 string BytesToIeee(uint64_t size, uint32_t sectorSize);
bsd.cc 33 sectorSize = 512;
120 sectorSize = *temp32;
179 ReverseBytes(&sectorSize, 4);
support.cc 222 // (sectorSize defaults to 1). Note that this function uses peculiar
226 string BytesToIeee(uint64_t size, uint32_t sectorSize) {
234 sizeInIeee = previousIeee = size * (uint64_t) sectorSize;
  /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 1413 milliseconds