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

  /external/vboot_reference/cgpt/
cgpt_create.c 42 h->my_lba = GPT_PMBR_SECTORS; /* The second sector on drive. */
81 h->entries_lba = h->my_lba + GPT_HEADER_SECTORS;
cgpt_common.c 848 /* Two headers are NOT bitwise identical. For example, my_lba pointers to header
849 * itself so that my_lba in primary and secondary is definitely different.
950 secondary_header->my_lba = gpt->gpt_drive_sectors - 1; /* the last sector */
951 secondary_header->alternate_lba = primary_header->my_lba;
952 secondary_header->entries_lba = secondary_header->my_lba -
957 primary_header->my_lba = GPT_PMBR_SECTORS; /* the second sector on drive */
958 primary_header->alternate_lba = secondary_header->my_lba;
960 primary_header->entries_lba = primary_header->my_lba + GPT_HEADER_SECTORS;
    [all...]
cgpt_show.c 77 printf("%sMy LBA: %lld\n", indent, (long long)header->my_lba);
  /external/vboot_reference/firmware/lib/cgptlib/
cgptlib_internal.c 115 if (h->my_lba != gpt_drive_sectors - GPT_HEADER_SECTORS)
117 if (h->entries_lba != h->my_lba - CalculateEntriesSectors(h))
120 if (h->my_lba != GPT_PMBR_SECTORS)
122 if (h->entries_lba < h->my_lba + 1)
331 header2->my_lba = gpt->gpt_drive_sectors - GPT_HEADER_SECTORS;
333 header2->entries_lba = header2->my_lba - CalculateEntriesSectors(header1);
340 header1->my_lba = GPT_PMBR_SECTORS; /* Second sector. */
344 header1->entries_lba = header1->my_lba + 1;
  /external/vboot_reference/firmware/include/
gpt.h 71 * the fields are duplicates except my_lba and entries_lba.
81 uint64_t my_lba; member in struct:__anon36451
  /external/vboot_reference/tests/
vboot_kernel_tests.c 90 h->my_lba = MOCK_SECTOR_COUNT - GPT_HEADER_SECTORS;
91 h->entries_lba = h->my_lba - CalculateEntriesSectors(h);
93 h->my_lba = GPT_PMBR_SECTORS;
94 h->entries_lba = h->my_lba + 1;
cgptlib_test.c 168 header->my_lba = 1;
198 header2->my_lba = DEFAULT_DRIVE_SECTORS - 1; /* 466 */
542 h2->entries_lba = h2->my_lba - CalculateEntriesSectors(h2);
567 h1->my_lba--;
568 h2->my_lba--;
574 h1->my_lba = 2;
575 h2->my_lba--;
    [all...]

Completed in 289 milliseconds