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