Lines Matching refs:psh
227 const struct pe_section_header *psh; in parse_section_table() local
230 range_check(x, off, sizeof(*psh) * number_of_sections, in parse_section_table()
233 if (x->x_headers_len < off + sizeof(*psh) * number_of_sections) in parse_section_table()
236 psh = (const struct pe_section_header *)(x->x_buf + off); in parse_section_table()
245 if (psh->psh_size_of_raw_data > 0 && in parse_section_table()
246 psh->psh_pointer_to_raw_data < x->x_headers_len) in parse_section_table()
249 range_check(x, psh->psh_pointer_to_raw_data, in parse_section_table()
250 psh->psh_size_of_raw_data, "section"); in parse_section_table()
253 i, psh->psh_pointer_to_raw_data, psh->psh_size_of_raw_data); in parse_section_table()
255 x->x_section_off[i] = psh->psh_pointer_to_raw_data; in parse_section_table()
256 x->x_section_len[i] = psh->psh_size_of_raw_data; in parse_section_table()
257 psh++; in parse_section_table()