Home | History | Annotate | Download | only in qemu

Lines Matching refs:e_ident

311     uint8_t e_ident[EI_NIDENT];
318 if (read(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
320 if (e_ident[0] != ELFMAG0 ||
321 e_ident[1] != ELFMAG1 ||
322 e_ident[2] != ELFMAG2 ||
323 e_ident[3] != ELFMAG3)
330 must_swab = data_order != e_ident[EI_DATA];
337 if (host_data_order != e_ident[EI_DATA])
341 if (e_ident[EI_CLASS] == ELFCLASS64) {