/src/sys/arch/i386/stand/bootxx/ |
boot1.c | 203 uint32_t entsz; local in function:gpt_lookup 246 entsz = le32toh(hdr->hdr_entsz); 259 entries_per_sector = BIOSDISK_DEFAULT_SECSIZE / entsz; 263 sectors_per_entry = entsz / BIOSDISK_DEFAULT_SECSIZE; 274 ent = (struct gpt_ent *)&buf[j * entsz];
|
boot1.c | 203 uint32_t entsz; local in function:gpt_lookup 246 entsz = le32toh(hdr->hdr_entsz); 259 entries_per_sector = BIOSDISK_DEFAULT_SECSIZE / entsz; 263 sectors_per_entry = entsz / BIOSDISK_DEFAULT_SECSIZE; 274 ent = (struct gpt_ent *)&buf[j * entsz];
|
/src/sys/dev/dkwedge/ |
dkwedge_gpt.c | 122 uint32_t entries, entsz; local in function:dkwedge_discover_gpt 179 entsz = roundup(le32toh(hdr->hdr_entsz), 8); 180 if (entsz != sizeof(struct gpt_ent)) { 207 sz = roundup(entries * entsz, secsize); 218 if (crc32(0, bp->b_data, entries * entsz) != gpe_crc) { 235 ent = (struct gpt_ent *)((char *)bp->b_data + (i * entsz));
|
dkwedge_gpt.c | 122 uint32_t entries, entsz; local in function:dkwedge_discover_gpt 179 entsz = roundup(le32toh(hdr->hdr_entsz), 8); 180 if (entsz != sizeof(struct gpt_ent)) { 207 sz = roundup(entries * entsz, secsize); 218 if (crc32(0, bp->b_data, entries * entsz) != gpe_crc) { 235 ent = (struct gpt_ent *)((char *)bp->b_data + (i * entsz));
|