/third_party/gptfdisk/ |
D | diskio-unix.cc | 251 numSecs = (uint32_t) geometry.sectors; in GetNumSecsPerTrack() 432 uint64_t sectors = 0; // size in sectors in DiskSize() local 452 *err = ioctl(fd, DKIOCGETBLOCKCOUNT, §ors); in DiskSize() 458 sectors = minfo.dki_capacity; in DiskSize() 464 sectors = bytes / b; in DiskSize() 472 sectors = sz = 0; in DiskSize() 477 sectors = sz; in DiskSize() 479 sectors = (b >> 9); in DiskSize() 483 sectors /= (GetBlockSize() / 512); in DiskSize() 492 if ((sectors == 0) || (*err == -1)) { in DiskSize() [all …]
|
D | diskio-windows.cc | 315 uint64_t sectors = 0; // size in sectors in DiskSize() local 332 sectors = (uint64_t) buf.Length.QuadPart / GetBlockSize(); in DiskSize() 336 sectors = ((uint64_t) bytes + ((uint64_t) moreBytes) * UINT32_MAX) / GetBlockSize(); in DiskSize() 341 sectors = 0; in DiskSize() 344 return sectors; in DiskSize()
|
D | mbrpart.cc | 126 void MBRPart::SetGeometry(uint32_t heads, uint32_t sectors, uint64_t ds, uint32_t bs) { in SetGeometry() argument 128 numSecspTrack = sectors; in SetGeometry()
|
D | mbrpart.h | 79 void SetGeometry(uint32_t heads, uint32_t sectors, uint64_t ds, uint32_t bs);
|
D | README-efi.txt | 83 1: Disk EFI_HANDLE(3EB5DD98): 108423424 sectors, 51.7 GiB 85 2: Disk EFI_HANDLE(3EB58289): 105456768 sectors, 50.3 GiB
|
D | NEWS | 320 this translates to 2048 sectors on disks with 512-byte sectors, but it 399 hybrid partitions that begin below 2^32 sectors and that are smaller than 400 2^32 sectors, since this is technically legal; but gdisk displays a 777 0 for the start and end sectors refer to the first and last available 778 sectors in the largest free block, and a partition number of 0 refers to 1013 - The Windows version now works on disks with over-512-byte sectors. 1014 Tested on a magneto-optical (MO) drive with 2048-byte sectors. 1182 - Added support for disks with other than 512-byte sectors. 1262 sectors per track (255 and 63, respectively), although the bulk of the 1266 - Fixed minor display bug that caused number of sectors on the disk to be [all …]
|
/third_party/ntfs-3g/libntfs-3g/ |
D | bootsect.c | 116 le16_to_cpu(b->bpb.sectors) || in ntfs_boot_sector_is_ntfs() 124 le16_to_cpu(b->bpb.sectors), in ntfs_boot_sector_is_ntfs() 195 s64 sectors; in ntfs_boot_sector_parse() local 222 sectors = sle64_to_cpu(bs->number_of_sectors); in ntfs_boot_sector_parse() 223 ntfs_log_debug("NumberOfSectors = %lld\n", (long long)sectors); in ntfs_boot_sector_parse() 224 if (!sectors) { in ntfs_boot_sector_parse() 229 (sectors - 1) << vol->sector_size_bits, in ntfs_boot_sector_parse() 232 (long long)(sectors - 1)); in ntfs_boot_sector_parse() 237 vol->nr_clusters = sectors >> (ffs(sectors_per_cluster) - 1); in ntfs_boot_sector_parse()
|
D | device.c | 741 dev->d_sectors_per_track = res->disk_geo.sectors; in ntfs_device_get_geo() 764 dev->d_sectors_per_track = geo.sectors; in ntfs_device_get_geo()
|
/third_party/ffmpeg/libavformat/ |
D | wtvdec.c | 54 uint32_t *sectors; /**< file allocation table */ member 95 … (wf->sectors[i] != wf->sectors[i - 1] + (1 << (wf->sector_bits - WTV_SECTOR_BITS)) && in wtvfile_read_packet() 96 seek_by_sector(pb, wf->sectors[i], 0) < 0)) { in wtvfile_read_packet() 121 seek_by_sector(pb, wf->sectors[offset >> wf->sector_bits], in wtvfile_seek() 166 wf->sectors = av_malloc(sizeof(uint32_t)); in wtvfile_open_sector() 167 if (!wf->sectors) { in wtvfile_open_sector() 171 wf->sectors[0] = first_sector; in wtvfile_open_sector() 174 wf->sectors = av_malloc(WTV_SECTOR_SIZE); in wtvfile_open_sector() 175 if (!wf->sectors) { in wtvfile_open_sector() 179 wf->nb_sectors = read_ints(s->pb, wf->sectors, WTV_SECTOR_SIZE / 4); in wtvfile_open_sector() [all …]
|
D | sga.c | 52 int score = 0, sectors = 1; in sga_probe() local 65 sectors = 0; in sga_probe() 77 if (sectors && header && last_left == 0) { in sga_probe() 83 } else if (sectors && header) { in sga_probe() 88 } else if (sectors) { in sga_probe() 91 i += sectors ? 2048 : left + 4; in sga_probe() 96 if (sectors && (i > 0 && left < 0x7fe) && in sga_probe() 99 } else if (sectors && i > 0) { in sga_probe() 170 i += sectors ? 2048 : size + 4; in sga_probe()
|
/third_party/ntfs-3g/ |
D | TODO.ntfsprogs | 13 2k, and 4k sectors, we need to set the default mft record, cluster, and index 17 kernels and they can't cope with partial sectors). 38 - manual: optimal backup if disks have bad sectors 42 minimum "hidden sectors" field and BOOT.INI need modifications. 104 bad sectors, etc) 112 - fully support disks with bad sectors (attrlist attr, unknown bad sectors)
|
/third_party/f2fs-tools/lib/ |
D | libf2fs_zoned.c | 154 uint64_t sectors; in f2fs_get_zone_blocks() local 179 sectors = atol(str); in f2fs_get_zone_blocks() 180 if (!sectors) in f2fs_get_zone_blocks() 183 dev->zone_blocks = sectors >> (F2FS_BLKSIZE_BITS - 9); in f2fs_get_zone_blocks() 184 sectors = (sectors << 9) / c.sector_size; in f2fs_get_zone_blocks() 190 dev->nr_zones = dev->total_sectors / sectors; in f2fs_get_zone_blocks() 191 if (dev->total_sectors % sectors) in f2fs_get_zone_blocks()
|
/third_party/musl/porting/liteos_a/user/src/unistd/ |
D | format.c | 5 int format(const char *dev, int sectors, int option) in format() argument 7 return syscall(SYS_format, dev, sectors, option); in format()
|
/third_party/flutter/flutter/examples/layers/test/smoketests/widgets/ |
D | sectors_test.dart | 7 import '../../../widgets/sectors.dart' as demo; 10 testWidgets('layers smoketest for widgets/sectors.dart', (WidgetTester tester) async {
|
/third_party/toybox/toys/pending/ |
D | fdisk.c | 32 long sectors; 165 unsigned long sectors = 0; in read_size() local 174 if (ioctl(dev_fd, BLKGETSIZE, §ors) == 0) in read_size() 175 if (sizeof(long) > sizeof(sector_t) && sectors != (sector_t)sectors) in read_size() 176 sectors = (uint32_t) - 1L; in read_size() 177 return sectors; in read_size() 229 disk->sectors = geometry.sectors; in read_geometry() 372 disk.heads = disk.sectors = 0; in read_mbr() 378 g_sectors = (FLAG(S) && TT.sectors) ? TT.sectors : s ? s : disk.sectors ? disk.sectors : 63; in read_mbr() 1379 g_sectors = TT.sectors = value; in expert_menu() [all …]
|
/third_party/flutter/flutter/examples/layers/widgets/ |
D | sectors.dart | 26 final RenderBoxToRenderSectorAdapter sectors = initCircle(); 57 final RenderSectorRing ring = sectors.child; 141 renderBox: sectors,
|
/third_party/ntfs-3g/include/ntfs-3g/ |
D | device_io.h | 51 unsigned char sectors; member
|
/third_party/flutter/flutter/examples/layers/test/ |
D | sector_test.dart | 8 import '../widgets/sectors.dart';
|
/third_party/e2fsprogs/misc/ |
D | partinfo.c | 75 loc.heads, (int)loc.sectors, loc.cylinders, in main()
|
/third_party/f2fs-tools/scripts/ |
D | verify.sh | 34 mkfs.f2fs $IMG `_get_sec $1` | grep sectors
|
/third_party/gstreamer/gstplugins_base/gst-libs/gst/audio/ |
D | gstaudiocdsrc.c | 111 #define TIME_INTERVAL_FROM_SECTORS(sectors) ((SAMPLES_PER_SECTOR * sectors * GST_SECOND) / 44100) argument 621 guint sectors; in gst_audio_cd_src_query() local 641 sectors = src->priv->tracks[src->priv->cur_track].end - in gst_audio_cd_src_query() 644 sectors = src->priv->tracks[src->priv->num_tracks - 1].end - in gst_audio_cd_src_query() 649 if (!gst_audio_cd_src_convert (src, sector_format, sectors, in gst_audio_cd_src_query() 657 sectors, dest_val, gst_format_get_name (dest_format)); in gst_audio_cd_src_query()
|
/third_party/FreeBSD/sbin/newfs_msdos/ |
D | mkfs_msdos.c | 876 u_int64_t sectors = device_size/bpb->bpbBytesPerSec; in getdiskinfo() local 877 if (sectors > UINT_MAX) { in getdiskinfo() 879 sectors, device_size, bpb->bpbBytesPerSec); in getdiskinfo() 881 bpb->bpbHugeSectors = sectors; in getdiskinfo()
|
/third_party/e2fsprogs/doc/RelNotes/ |
D | v1.25.txt | 8 zapping disk sectors. (This bug could cause mke2fs to core dump for
|
/third_party/ntfs-3g/ntfsprogs/ |
D | ntfsrecover.c | 3078 u64 sectors; in getboot() local 3091 sectors = getle64(buf, 0x28); in getboot() 3092 clusters = sectors/sectpercluster; in getboot() 3102 if ((long long)sectors*bytespersect > 10000000000LL) in getboot() 3104 (long long)sectors*bytespersect, in getboot() 3105 (long long)sectors*bytespersect/1000000000); in getboot() 3108 (long long)sectors*bytespersect, in getboot() 3109 (long long)sectors*bytespersect/1000000); in getboot() 3111 (long long)sectors,(long long)sectors, in getboot()
|
/third_party/libphonenumber/resources/carrier/en/ |
D | 60.txt | 16 # https://www.mcmc.gov.my/sectors/celco/numbering-management/numbering-management/numbers-assignment
|