Symbol: section_header
sys/x86/x86/ucode_subr.c
103
const section_header_t *section_header;
sys/x86/x86/ucode_subr.c
121
(sizeof(*container_header) + sizeof(*section_header))) {
sys/x86/x86/ucode_subr.c
134
section_header = (const section_header_t *)fw_data;
sys/x86/x86/ucode_subr.c
135
if (section_header->type != AMD_10H_EQUIV_TABLE_TYPE) {
sys/x86/x86/ucode_subr.c
140
if (section_header->size == 0) {
sys/x86/x86/ucode_subr.c
145
fw_data += sizeof(*section_header);
sys/x86/x86/ucode_subr.c
146
fw_size -= sizeof(*section_header);
sys/x86/x86/ucode_subr.c
148
if (section_header->size > fw_size) {
sys/x86/x86/ucode_subr.c
153
if (section_header->size < sizeof(*equiv_cpu_table)) {
sys/x86/x86/ucode_subr.c
159
fw_data += section_header->size;
sys/x86/x86/ucode_subr.c
160
fw_size -= section_header->size;
sys/x86/x86/ucode_subr.c
179
while (fw_size >= sizeof(*section_header)) {
sys/x86/x86/ucode_subr.c
180
section_header = (const section_header_t *)fw_data;
sys/x86/x86/ucode_subr.c
181
if (section_header->type == AMD_10H_MAGIC) {
sys/x86/x86/ucode_subr.c
189
fw_data += sizeof(*section_header);
sys/x86/x86/ucode_subr.c
190
fw_size -= sizeof(*section_header);
sys/x86/x86/ucode_subr.c
191
if (section_header->type != AMD_10H_uCODE_TYPE) {
sys/x86/x86/ucode_subr.c
196
if (section_header->size > fw_size) {
sys/x86/x86/ucode_subr.c
201
if (section_header->size < sizeof(*fw_header)) {
sys/x86/x86/ucode_subr.c
207
fw_data += section_header->size;
sys/x86/x86/ucode_subr.c
208
fw_size -= section_header->size;
sys/x86/x86/ucode_subr.c
227
selected_size = section_header->size;