Lines Matching defs:pe32
27 const struct pe32_opt_hdr *pe32;
53 chkaddr(0, cursor, sizeof(pe32->magic));
54 pe32 = pebuf + cursor;
57 switch (pe32->magic) {
59 chkaddr(0, cursor, sizeof(*pe32));
61 (unsigned long)&pe32->csum - (unsigned long)pebuf;
62 ctx->header_size = pe32->header_size;
63 cursor += sizeof(*pe32);
64 ctx->n_data_dirents = pe32->data_dirs;
77 pr_warn("Unknown PEOPT magic = %04hx\n", pe32->magic);