Home | History | Annotate | Download | only in core

Lines Matching defs:e_ident

312     uint8_t e_ident[EI_NIDENT];
319 if (read(fd, e_ident, sizeof(e_ident)) != sizeof(e_ident))
321 if (e_ident[0] != ELFMAG0 ||
322 e_ident[1] != ELFMAG1 ||
323 e_ident[2] != ELFMAG2 ||
324 e_ident[3] != ELFMAG3)
331 must_swab = data_order != e_ident[EI_DATA];
338 if (host_data_order != e_ident[EI_DATA])
342 if (e_ident[EI_CLASS] == ELFCLASS64) {