Searched defs:e32 (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/lib/libctf/common/
H A Dctf_lib.c204 Elf32_Ehdr e32; member in union:__anon1505
254 bcmp(&hdr.e32.e_ident[EI_MAG0], ELFMAG, SELFMAG) == 0) {
267 if (hdr.e32.e_ident[EI_DATA] != order)
269 if (hdr.e32.e_version != EV_CURRENT)
272 if (hdr.e32.e_ident[EI_CLASS] == ELFCLASS64) {
276 Elf32_Ehdr e32 = hdr.e32; local
277 ehdr_to_gelf(&e32, &hdr.e64);
293 if (hdr.e32.e_ident[EI_CLASS] == ELFCLASS32) {
/osnet-11/usr/src/lib/libproc/common/
H A DPcore.c1045 Elf32_Ehdr e32; local
1053 if (pread64(efp->e_fd, &e32, sizeof (e32), 0) != sizeof (e32)) {
1058 if ((is_noelf = memcmp(&e32.e_ident[EI_MAG0], ELFMAG, SELFMAG)) != 0 ||
1059 e32.e_type != type || (isa_err = (e32.e_ident[EI_DATA] != order)) ||
1060 e32.e_version != EV_CURRENT) {
1075 * 32-bit, so convert e32 to a elf_file_header_t.
1077 if (e32
[all...]
H A DPsymtab.c3164 uint32_t e32[NARG]; local
3167 (void) memset(e32, 0, sizeof (e32));
3168 if (Pread(P, e32, sizeof (e32), envpoff) <= 0) {
3173 envp[i] = e32[i];

Completed in 279 milliseconds