/external/valgrind/none/tests/ |
bigcode.vgtest | 2 # and sanity check when recycling sectors. To ensure we recycle 3 # sectors, we put a small number of sectors. 8 vgopts: --num-transtab-sectors=2 --sanity-level=4
|
/external/vboot_reference/firmware/stub/ |
vboot_api_stub_stream.c | 14 /* The stub implementation assumes 512-byte disk sectors */ 25 /* Number of sectors left in partition */ 52 uint64_t sectors; local 63 sectors = bytes / LBA_BYTES; 64 if (sectors > s->sectors_left) 67 rv = VbExDiskRead(s->handle, s->sector, sectors, buffer); 71 s->sector += sectors; 72 s->sectors_left -= sectors;
|
/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/ |
BootSector.java | 55 * The offset to the sectors per cluster value stored in a boot sector. 86 "suspicious sectors per cluster count " + sectorsPerCluster); 124 * Gets the number of sectors per FAT. 126 * @return the sectors per FAT 131 * Sets the number of sectors/fat 133 * @param v the new number of sectors per fat 301 * {@link #getSectorsPerCluster() sectors per cluster} and the 311 * Gets the number of sectors/cluster 320 * Sets the number of sectors/cluster 322 * @param v the new number of sectors per cluste [all...] |
SuperFloppyFormatter.java | 58 * The default number of sectors per track. 377 final long sectors = size / sectorSize; local 379 if (sectors <= 66600) throw new IllegalArgumentException( 383 sectors > 67108864 ? 64 : 384 sectors > 33554432 ? 32 : 385 sectors > 16777216 ? 16 : 386 sectors > 532480 ? 8 : 1; 391 "number of reserved sectors must be 32"); 396 final long sectors = device.getSize() / device.getSectorSize(); local 398 if (sectors <= 66600) throw new IllegalArgumentException 407 final long sectors = size \/ sectorSize; local 457 final long sectors = size \/ sectorSize; local [all...] |
/external/fsck_msdos/ |
dosfs.h | 50 u_int SecPerClust; /* sectors per cluster */ 51 u_int ResSectors; /* number of reserved sectors */ 55 u_int FATsmall; /* number of sectors per FAT */ 56 u_int SecPerTrack; /* sectors per track */ 58 u_int32_t Sectors; /* total number of sectors */ 59 u_int32_t HiddenSecs; /* # of hidden sectors */ 60 u_int32_t HugeSectors; /* # of sectors if bpbSectors == 0 */ 77 u_int32_t NumSectors; /* how many sectors are there */ 78 u_int32_t FATsecs; /* how many sectors are in FAT * [all...] |
/external/kernel-headers/original/uapi/linux/ |
msdos_fs.h | 115 __u8 sec_per_clus; /* sectors/cluster */ 116 __le16 reserved; /* reserved sectors */ 119 __u8 sectors[2]; /* number of sectors */ member in struct:fat_boot_sector 121 __le16 fat_length; /* sectors/FAT */ 122 __le16 secs_track; /* sectors per track */ 124 __le32 hidden; /* hidden sectors (unused) */ 125 __le32 total_sect; /* number of sectors (if sectors == 0) */ 142 __le32 length; /* sectors/FAT * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/ |
msdos_fs.h | 109 __u8 sec_per_clus; /* sectors/cluster */ 110 __le16 reserved; /* reserved sectors */ 113 __u8 sectors[2]; /* number of sectors */ member in struct:fat_boot_sector 115 __le16 fat_length; /* sectors/FAT */ 116 __le16 secs_track; /* sectors per track */ 118 __le32 hidden; /* hidden sectors (unused) */ 119 __le32 total_sect; /* number of sectors (if sectors == 0) */ 122 __le32 fat32_length; /* sectors/FAT * [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/ |
msdos_fs.h | 110 __u8 sec_per_clus; /* sectors/cluster */ 111 __le16 reserved; /* reserved sectors */ 114 __u8 sectors[2]; /* number of sectors */ member in struct:fat_boot_sector 116 __le16 fat_length; /* sectors/FAT */ 117 __le16 secs_track; /* sectors per track */ 119 __le32 hidden; /* hidden sectors (unused) */ 120 __le32 total_sect; /* number of sectors (if sectors == 0) */ 123 __le32 fat32_length; /* sectors/FAT * [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
cmssm.c | 39 #define SECTORS 16 // number of divisions in alpha and theta 69 cmsGDBPoint Gamut[SECTORS][SECTORS]; 170 *alpha = (int) floor(((sp->alpha * (SECTORS)) / 360.0) ); 171 *theta = (int) floor(((sp->theta * (SECTORS)) / 180.0) ); 173 if (*alpha >= SECTORS) 174 *alpha = SECTORS-1; 175 if (*theta >= SECTORS) 176 *theta = SECTORS-1; 346 if (alpha < 0 || theta < 0 || alpha >= SECTORS || theta >= SECTORS) [all...] |
/external/blktrace/btt/ |
seek.c | 26 long long sectors; member in struct:seek_bkt 62 static void __insert(struct rb_root *root, long long sectors) 71 if (sectors < sbp->sectors) 73 else if (sectors > sbp->sectors) 83 sbp->sectors = sectors; 145 *rvp = sbp->sectors; 181 mp->modes[mp->nmds++] = sbp->sectors; [all...] |
/sdk/emulator/mksdcard/src/source/ |
mksdcard.c | 105 disk_size -= RESERVED_SECTORS * BYTES_PER_SECTOR; /* don't count 32 reserved sectors */ 106 disk_size /= BYTES_PER_SECTOR; /* disk size in sectors */ 129 POKEB( boot + 0xd, sectors_per_cluster ); /* sectors per cluster */ 130 POKES( boot + 0xe, RESERVED_SECTORS ); /* reserved sectors before first FAT */ 133 POKES( boot + 0x13, 0 ); /* total sectors, 0 to use 32-bit value at offset 0x20 */ 135 POKES( boot + 0x16, 0 ); /* Sectors per FAT for FAT12/16, 0 for FAT32 */ 136 POKES( boot + 0x18, 9 ); /* Sectors per track (whatever) */ 138 POKEW( boot + 0x1c, 0 ); /* Hidden sectors */ 139 POKEW( boot + 0x20, sectors_per_disk ); /* Total sectors */ 142 POKEW( boot + 0x24, sectors_per_fat ); /* Sectors per FAT * [all...] |
/development/ndk/platforms/android-3/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/external/vboot_reference/firmware/lib/cgptlib/include/ |
cgptlib.h | 18 * kernel partition in LBA sectors. gpt.current_kernel contains the partition
|
/prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-13/arch-arm/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-13/arch-mips/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-13/arch-x86/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-14/arch-arm/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-14/arch-mips/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-14/arch-x86/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-15/arch-arm/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-15/arch-mips/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|
/prebuilts/ndk/current/platforms/android-15/arch-x86/usr/include/linux/mtd/ |
nftl.h | 32 unsigned char sectors; member in struct:NFTLrecord
|