Home
last modified time | relevance | path

Searched refs:table_bytes (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/dev/coreboot/
H A Dcoreboot.c98 if (hdr->table_bytes > CB_MAX_TABLE_BYTES) in coreboot_sanitize_header()
100 if ((hdr->table_bytes % CB_TABLE_ALIGN) != 0) in coreboot_sanitize_header()
103 total = (uint64_t)hdr->header_bytes + (uint64_t)hdr->table_bytes; in coreboot_sanitize_header()
139 if (hdr->table_bytes == 0) in coreboot_validate_table()
142 if ((uint64_t)hdr->header_bytes + (uint64_t)hdr->table_bytes > in coreboot_validate_table()
149 cksum = cb_checksum(table, hdr->table_bytes); in coreboot_validate_table()
225 table_end = entry + hdr->table_bytes; in coreboot_parse_table()
1247 table_end = entry + hdr->table_bytes; in coreboot_identify()
1333 (uintmax_t)pa, hdr->table_entries, hdr->table_bytes); in coreboot_attach()
H A Dcoreboot.h95 uint32_t table_bytes; member