Searched refs:GET_LE (Results 1 – 2 of 2) sorted by relevance
23 ELF(Phdr) *pt = (ELF(Phdr) *)(raw_addr + GET_LE(&hdr->e_phoff)); in BITSFUNC()25 if (GET_LE(&hdr->e_type) != ET_DYN) in BITSFUNC()29 for (i = 0; i < GET_LE(&hdr->e_phnum); i++) { in BITSFUNC()30 if (GET_LE(&pt[i].p_type) == PT_LOAD) { in BITSFUNC()34 if (GET_LE(&pt[i].p_offset) != 0 || in BITSFUNC()35 GET_LE(&pt[i].p_vaddr) != 0) in BITSFUNC()38 if (GET_LE(&pt[i].p_memsz) != GET_LE(&pt[i].p_filesz)) in BITSFUNC()41 load_size = GET_LE(&pt[i].p_memsz); in BITSFUNC()43 } else if (GET_LE(&pt[i].p_type) == PT_DYNAMIC) { in BITSFUNC()44 dyn = raw_addr + GET_LE(&pt[i].p_offset); in BITSFUNC()[all …]
131 #define GET_LE(x) \ macro