/src/sys/arch/cobalt/stand/boot/ |
wdc.c | 217 * Send a command to the device (CHS and LBA addressing). 328 bool lba, lba48; local in function:wdc_exec_read 331 lba = false; 343 lba = true; 349 } else if (lba) { 350 /* LBA */
|
wdc.c | 217 * Send a command to the device (CHS and LBA addressing). 328 bool lba, lba48; local in function:wdc_exec_read 331 lba = false; 343 lba = true; 349 } else if (lba) { 350 /* LBA */
|
wdc.c | 217 * Send a command to the device (CHS and LBA addressing). 328 bool lba, lba48; local in function:wdc_exec_read 331 lba = false; 343 lba = true; 349 } else if (lba) { 350 /* LBA */
|
/src/sys/arch/mmeye/stand/boot/ |
wdc.c | 254 * Send a command to the device (CHS and LBA addressing). 365 bool lba, lba48; local in function:wdc_exec_read 368 lba = false; 380 lba = true; 386 } else if (lba) { 387 /* LBA */
|
wdc.c | 254 * Send a command to the device (CHS and LBA addressing). 365 bool lba, lba48; local in function:wdc_exec_read 368 lba = false; 380 lba = true; 386 } else if (lba) { 387 /* LBA */
|
wdc.c | 254 * Send a command to the device (CHS and LBA addressing). 365 bool lba, lba48; local in function:wdc_exec_read 368 lba = false; 380 lba = true; 386 } else if (lba) { 387 /* LBA */
|
/src/sys/arch/bebox/stand/boot/ |
wdc.c | 271 * Send a command to the device (CHS and LBA addressing). 424 bool lba, lba48; local in function:wdc_exec_read 433 lba = false; 445 lba = true; 451 } else if (lba) { 452 /* LBA */
|
wdc.c | 271 * Send a command to the device (CHS and LBA addressing). 424 bool lba, lba48; local in function:wdc_exec_read 433 lba = false; 445 lba = true; 451 } else if (lba) { 452 /* LBA */
|
wdc.c | 271 * Send a command to the device (CHS and LBA addressing). 424 bool lba, lba48; local in function:wdc_exec_read 433 lba = false; 445 lba = true; 451 } else if (lba) { 452 /* LBA */
|
/src/usr.sbin/makefs/cd9660/ |
cd9660_eltorito.c | 546 uint32_t lba; local in function:cd9660_write_mbr_partition_entry 567 /* LBA extent */ 568 lba = htole32(sector_start); 569 fwrite(&lba, sizeof(lba), 1, fd); 570 lba = htole32(nsectors); 571 fwrite(&lba, sizeof(lba), 1, fd);
|
cd9660_eltorito.c | 546 uint32_t lba; local in function:cd9660_write_mbr_partition_entry 567 /* LBA extent */ 568 lba = htole32(sector_start); 569 fwrite(&lba, sizeof(lba), 1, fd); 570 lba = htole32(nsectors); 571 fwrite(&lba, sizeof(lba), 1, fd);
|
cd9660_eltorito.c | 546 uint32_t lba; local in function:cd9660_write_mbr_partition_entry 567 /* LBA extent */ 568 lba = htole32(sector_start); 569 fwrite(&lba, sizeof(lba), 1, fd); 570 lba = htole32(nsectors); 571 fwrite(&lba, sizeof(lba), 1, fd);
|
/src/sbin/nvmectl/ |
nvme.h | 65 uint64_t lba; member in struct:nvme_error_information_entry
|
nvme.h | 65 uint64_t lba; member in struct:nvme_error_information_entry
|
nvme.h | 65 uint64_t lba; member in struct:nvme_error_information_entry
|
logpage.c | 141 e->lba = le64toh(e->lba); 188 printf(" LBA: %ju\n", entry->lba); 636 uint32_t lba; local in function:print_hgst_info_self_test 656 lba = le32dec(walker); 659 printf(" %-28s: %#jx (%jd)\n", "LBA", (uintmax_t)lba, 660 (uintmax_t)lba);
|
logpage.c | 141 e->lba = le64toh(e->lba); 188 printf(" LBA: %ju\n", entry->lba); 636 uint32_t lba; local in function:print_hgst_info_self_test 656 lba = le32dec(walker); 659 printf(" %-28s: %#jx (%jd)\n", "LBA", (uintmax_t)lba, 660 (uintmax_t)lba);
|
/src/sys/compat/linux/common/ |
linux_cdrom.h | 105 int lba; member in union:linux_cdrom_addr
|
linux_cdrom.h | 105 int lba; member in union:linux_cdrom_addr
|
/src/sys/sys/ |
dvdio.h | 155 int lba; member in struct:dvd_lu_send_title_key
|
dvdio.h | 155 int lba; member in struct:dvd_lu_send_title_key
|
/src/sys/stand/efiboot/ |
efiblock.c | 248 EFI_LBA lba; local in function:efi_block_find_partitions_cd9660 250 for (lba = 16;; lba++) { 252 lba * ISO_DEFAULT_BLOCK_SIZE, &vd, sizeof(vd));
|
efiblock.c | 248 EFI_LBA lba; local in function:efi_block_find_partitions_cd9660 250 for (lba = 16;; lba++) { 252 lba * ISO_DEFAULT_BLOCK_SIZE, &vd, sizeof(vd));
|
/src/sbin/gpt/ |
gpt.c | 247 gpt_read(gpt_t gpt, off_t lba, size_t count) 257 ofs = lba * gpt->secsz; 282 gpt_mbr(gpt_t gpt, off_t lba, unsigned int *next_index, off_t ext_offset) 289 mbr = gpt_read(gpt, lba, 1); 298 "MBR not found at sector %ju", (uintmax_t)lba); 317 if (pmbr && i == 4 && lba == 0) { 320 (uintmax_t)lba); 322 gpt_msg(gpt, "PMBR at sector %ju", (uintmax_t)lba); 323 p = map_add(gpt, lba, 1LL, MAP_TYPE_PMBR, mbr, 1); 327 gpt_warnx(gpt, "Suspicious MBR at sector %ju", (uintmax_t)lba); 585 uint64_t lba; local in function:gpt_open [all...] |
gpt.c | 247 gpt_read(gpt_t gpt, off_t lba, size_t count) 257 ofs = lba * gpt->secsz; 282 gpt_mbr(gpt_t gpt, off_t lba, unsigned int *next_index, off_t ext_offset) 289 mbr = gpt_read(gpt, lba, 1); 298 "MBR not found at sector %ju", (uintmax_t)lba); 317 if (pmbr && i == 4 && lba == 0) { 320 (uintmax_t)lba); 322 gpt_msg(gpt, "PMBR at sector %ju", (uintmax_t)lba); 323 p = map_add(gpt, lba, 1LL, MAP_TYPE_PMBR, mbr, 1); 327 gpt_warnx(gpt, "Suspicious MBR at sector %ju", (uintmax_t)lba); 585 uint64_t lba; local in function:gpt_open [all...] |