Lines Matching +defs:val +defs:process
25 #define ELF_R_SYM(val) ELF64_R_SYM(val) argument
26 #define ELF_R_TYPE(val) ELF64_R_TYPE(val) argument
63 #define le16_to_cpu(val) (val) argument
64 #define le32_to_cpu(val) (val) argument
65 #define le64_to_cpu(val) (val) argument
66 #define be16_to_cpu(val) bswap_16(val) argument
67 #define be32_to_cpu(val) bswap_32(val) argument
68 #define be64_to_cpu(val) bswap_64(val) argument
72 #define le16_to_cpu(val) bswap_16(val) argument
73 #define le32_to_cpu(val) bswap_32(val) argument
74 #define le64_to_cpu(val) bswap_64(val) argument
75 #define be16_to_cpu(val) (val) argument
76 #define be32_to_cpu(val) (val) argument
77 #define be64_to_cpu(val) (val) argument
80 static uint16_t elf16_to_cpu(uint16_t val) in elf16_to_cpu()
88 static uint32_t elf32_to_cpu(uint32_t val) in elf32_to_cpu()
99 static uint64_t elf64_to_cpu(uint64_t val) in elf64_to_cpu()
348 static void process(FILE *fp) in process() function