Home
last modified time | relevance | path

Searched refs:GET_LE (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/arch/x86/entry/vdso/
Dvdso2c.h32 offset = (unsigned long)GET_LE(&sec->sh_offset); in BITSFUNC()
33 len = (size_t)GET_LE(&sec->sh_size); in BITSFUNC()
58 ELF(Phdr) *pt = (ELF(Phdr) *)(raw_addr + GET_LE(&hdr->e_phoff)); in BITSFUNC()
60 if (GET_LE(&hdr->e_type) != ET_DYN) in BITSFUNC()
64 for (i = 0; i < GET_LE(&hdr->e_phnum); i++) { in BITSFUNC()
65 if (GET_LE(&pt[i].p_type) == PT_LOAD) { in BITSFUNC()
69 if (GET_LE(&pt[i].p_offset) != 0 || in BITSFUNC()
70 GET_LE(&pt[i].p_vaddr) != 0) in BITSFUNC()
73 if (GET_LE(&pt[i].p_memsz) != GET_LE(&pt[i].p_filesz)) in BITSFUNC()
76 load_size = GET_LE(&pt[i].p_memsz); in BITSFUNC()
[all …]
Dvdso2c.c133 #define GET_LE(x) \ macro