Lines Matching refs:Table
309 static struct ipart Table[FD_NUMPART]; variable
1178 if ((rval = libfdisk_init(&epp, Dfltdev, &Table[0], lf_op_flag)) in main()
1254 Table[0].bootid = ACTIVE; in main()
1255 Table[0].relsect = LE_32(heads * sectors); in main()
1257 Table[0].numsect = in main()
1261 Table[0].systid = SUNIXOS2; /* Solaris */ in main()
1427 if (Table[new_pt].systid != SUNIXOS && in dev_mboot_write()
1428 Table[new_pt].systid != SUNIXOS2) in dev_mboot_write()
1440 Table[new_pt].relsect) && in dev_mboot_write()
1442 Table[new_pt].numsect)) in dev_mboot_write()
1468 if (Table[new_pt].systid != EFI_PMBR) in dev_mboot_write()
1472 Table[new_pt].systid) && in dev_mboot_write()
1474 Table[new_pt].relsect) && in dev_mboot_write()
1476 Table[new_pt].numsect)) { in dev_mboot_write()
1490 if (old_pt == FD_NUMPART && Table[new_pt].begcyl != 0) { in dev_mboot_write()
2027 if (Table[i].systid == id && in load()
2028 Table[i].bootid == act && in load()
2029 Table[i].beghead == bhead && in load()
2030 Table[i].begsect == ((bsect & 0x3f) | in load()
2032 Table[i].begcyl == (uchar_t)(bcyl & 0xff) && in load()
2033 Table[i].endhead == ehead && in load()
2034 Table[i].endsect == ((esect & 0x3f) | in load()
2036 Table[i].endcyl == (uchar_t)(ecyl & 0xff) && in load()
2037 Table[i].relsect == LE_32(rsect) && in load()
2038 Table[i].numsect == LE_32(numsect)) { in load()
2040 (void) memset(&Table[i], 0, in load()
2245 lba = (uint32_t)Table[ti].relsect; in Set_Table_CHS_Values()
2259 Table[ti].begcyl = cy & 0xff; in Set_Table_CHS_Values()
2260 Table[ti].beghead = (uchar_t)hd; in Set_Table_CHS_Values()
2261 Table[ti].begsect = (uchar_t)(((cy >> 2) & 0xc0) | sc); in Set_Table_CHS_Values()
2267 lba = (uint32_t)(Table[ti].relsect + Table[ti].numsect - 1); in Set_Table_CHS_Values()
2277 Table[ti].endcyl = cy & 0xff; in Set_Table_CHS_Values()
2278 Table[ti].endhead = (uchar_t)hd; in Set_Table_CHS_Values()
2279 Table[ti].endsect = (uchar_t)(((cy >> 2) & 0xc0) | sc); in Set_Table_CHS_Values()
2307 if (Table[i].systid == UNUSED) { in insert_tbl()
2316 Table[i].systid = (uchar_t)id; in insert_tbl()
2317 Table[i].bootid = (uchar_t)act; in insert_tbl()
2318 Table[i].numsect = LE_32(numsect); in insert_tbl()
2319 Table[i].relsect = LE_32(rsect); in insert_tbl()
2322 (void) memset(&Table[i], 0, sizeof (struct ipart)); in insert_tbl()
2348 Table[i].begcyl = bcyl & 0xff; in insert_tbl()
2349 Table[i].endcyl = ecyl & 0xff; in insert_tbl()
2350 Table[i].beghead = (uchar_t)bhead; in insert_tbl()
2351 Table[i].endhead = (uchar_t)ehead; in insert_tbl()
2352 Table[i].begsect = (uchar_t)(((bcyl >> 2) & 0xc0) | bsect); in insert_tbl()
2353 Table[i].endsect = ((ecyl >> 2) & 0xc0) | esect; in insert_tbl()
2401 if (Table[j].systid == UNUSED) { in entry_from_old_table()
2402 (void) memcpy(&Table[j], &Old_Table[i], in entry_from_old_table()
2403 sizeof (Table[0])); in entry_from_old_table()
2430 if (Table[i].systid != UNUSED) { in verify_tbl()
2439 if (Table[i].systid == EFI_PMBR) { in verify_tbl()
2446 if (Table[i].relsect != 1) { in verify_tbl()
2452 Table[i].relsect); in verify_tbl()
2457 if (Table[i].numsect != in verify_tbl()
2470 Table[i].numsect, in verify_tbl()
2477 Table[i].numsect, in verify_tbl()
2485 rsect = LE_32(Table[i].relsect); in verify_tbl()
2486 numsect = LE_32(Table[i].numsect); in verify_tbl()
2495 if (Table[j].systid != UNUSED) { in verify_tbl()
2497 LE_32(Table[j].relsect); in verify_tbl()
2499 LE_32(Table[j].numsect); in verify_tbl()
2517 Table[i].systid, in verify_tbl()
2518 Table[i].bootid, in verify_tbl()
2519 Table[i].begcyl, in verify_tbl()
2520 Table[i].beghead, in verify_tbl()
2521 Table[i].begsect, in verify_tbl()
2522 Table[i].endcyl, in verify_tbl()
2523 Table[i].endhead, in verify_tbl()
2524 Table[i].endsect, in verify_tbl()
2525 Table[i].relsect, in verify_tbl()
2526 Table[i].numsect, in verify_tbl()
2527 Table[j].systid, in verify_tbl()
2528 Table[j].bootid, in verify_tbl()
2529 Table[j].begcyl, in verify_tbl()
2530 Table[j].beghead, in verify_tbl()
2531 Table[j].begsect, in verify_tbl()
2532 Table[j].endcyl, in verify_tbl()
2533 Table[j].endhead, in verify_tbl()
2534 Table[j].endsect, in verify_tbl()
2535 Table[j].relsect, in verify_tbl()
2536 Table[j].numsect); in verify_tbl()
2556 if (Table[i].systid != UNUSED) { in verify_tbl()
2560 ((((diskaddr_t)lel(Table[i].relsect) + in verify_tbl()
2561 lel(Table[i].numsect)) > dev_capacity) || in verify_tbl()
2562 (((diskaddr_t)lel(Table[i].relsect) + in verify_tbl()
2563 lel(Table[i].numsect)) > DK_MAX_2TB))) { in verify_tbl()
2827 if (Table[i].systid == UNUSED) {
2835 if (Table[i].systid != UNUSED) {
2836 numsect += LE_32(Table[i].numsect);
2840 if (fdisk_is_dos_extended(Table[i].systid)) {
2990 Table[j].bootid = ACTIVE;
2997 Table[j].bootid = 0;
3001 Table[i].bootid = 0;
3010 if (fdisk_is_dos_extended(Table[i].systid)) {
3012 LE_32(Table[i].relsect),
3013 LE_32(Table[i].numsect));
3061 Table[i].bootid = 0;
3097 if (Table[i].systid != UNUSED) {
3098 localpart[j] = Table[i];
3421 if (Table[i].systid != UNUSED &&
3422 Table[i].bootid == ACTIVE)
3423 Table[i].bootid = 0;
3433 if (Table[i].systid == UNUSED) {
3439 else if ((Table[i].systid == DOSDATA) ||
3440 (Table[i].systid == EXTDOS) ||
3441 (Table[i].systid == FDISK_EXTLBA)) {
3449 Table[i].bootid = ACTIVE;
3452 Table[j].bootid = 0;
3497 if (Table[i].systid == SUNIXOS) {
3498 Table[i].systid = SUNIXOS2;
3499 } else if (Table[i].systid == SUNIXOS2) {
3500 Table[i].systid = SUNIXOS;
3545 if (Table[i].systid == UNUSED) {
3552 if (fdisk_is_dos_extended(Table[i].systid) &&
3553 (Table[i].relsect == fdisk_get_ext_beg_sec(epp)) &&
3592 if (Table[i].bootid == ACTIVE) {
3598 (void) memset(&Table[i], 0, sizeof (struct ipart));
3699 if (Table[i].systid == UNUSED) {
3703 if (Table[i].bootid == ACTIVE)
3707 switch (Table[i].systid) {
3714 if (fdisk_is_linux_swap(epp, Table[i].relsect,
3814 if (LE_32(Table[i].numsect) == DK_MAX_2TB)
3822 startcyl = LE_32(Table[i].relsect) /
3825 if (LE_32(Table[i].numsect) == DK_MAX_2TB) {
3829 length = LE_32(Table[i].numsect) /
3831 if (LE_32(Table[i].numsect) %
3884 (void) fprintf(stderr, " %-5d ", Table[i].systid);
3885 (void) fprintf(stderr, "%-3d ", Table[i].bootid);
3886 (void) fprintf(stderr, "%-5d ", Table[i].beghead);
3887 (void) fprintf(stderr, "%-5d ", Table[i].begsect & 0x3f);
3889 (((uint_t)Table[i].begsect & 0xc0) << 2) + Table[i].begcyl);
3891 (void) fprintf(stderr, "%-5d ", Table[i].endhead);
3892 (void) fprintf(stderr, "%-5d ", Table[i].endsect & 0x3f);
3894 (((uint_t)Table[i].endsect & 0xc0) << 2) + Table[i].endcyl);
3895 (void) fprintf(stderr, "%-10u ", LE_32(Table[i].relsect));
3896 (void) fprintf(stderr, "%-10u\n", LE_32(Table[i].numsect));
3912 (void) memcpy(&Old_Table[i], &Table[i], sizeof (Table[0]));
3927 Table[i].systid = UNUSED;
3928 Table[i].numsect = LE_32(UNUSED);
3929 Table[i].relsect = LE_32(UNUSED);
3930 Table[i].bootid = 0;
3965 (void) memset(&Table[i], 0, sizeof (struct ipart));
3967 fill_ipart(bootptr, &Table[i]);
4044 tbl_ptr = (struct ipart *)&Table[0].bootid;
4045 for (; tbl_ptr < (struct ipart *)&Table[FD_NUMPART].bootid;
4066 if (memcmp(&Old_Table[i], &Table[i], sizeof (Table[0])) != 0) {
4166 Table[i].systid,
4167 Table[i].bootid,
4168 Table[i].beghead,
4169 Table[i].begsect & 0x3f,
4170 ((Table[i].begcyl & 0xff) | ((Table[i].begsect &
4172 Table[i].endhead,
4173 Table[i].endsect & 0x3f,
4174 ((Table[i].endcyl & 0xff) | ((Table[i].endsect &
4176 LE_32(Table[i].relsect),
4177 LE_32(Table[i].numsect));
4231 if (Table[i].systid == SUNIXOS || Table[i].systid == SUNIXOS2) {
4237 numsect = LE_32(Table[i].numsect);
4599 clr_table = &Table[part];
5634 if (Table[i].systid != UNUSED)