Lines Matching +defs:val +defs:process
131 #define le16_to_cpu(val) (val) argument
132 #define le32_to_cpu(val) (val) argument
133 #define le64_to_cpu(val) (val) argument
134 #define be16_to_cpu(val) bswap_16(val) argument
135 #define be32_to_cpu(val) bswap_32(val) argument
136 #define be64_to_cpu(val) bswap_64(val) argument
138 #define cpu_to_le16(val) (val) argument
139 #define cpu_to_le32(val) (val) argument
140 #define cpu_to_le64(val) (val) argument
141 #define cpu_to_be16(val) bswap_16(val) argument
142 #define cpu_to_be32(val) bswap_32(val) argument
143 #define cpu_to_be64(val) bswap_64(val) argument
146 #define le16_to_cpu(val) bswap_16(val) argument
147 #define le32_to_cpu(val) bswap_32(val) argument
148 #define le64_to_cpu(val) bswap_64(val) argument
149 #define be16_to_cpu(val) (val) argument
150 #define be32_to_cpu(val) (val) argument
151 #define be64_to_cpu(val) (val) argument
153 #define cpu_to_le16(val) bswap_16(val) argument
154 #define cpu_to_le32(val) bswap_32(val) argument
155 #define cpu_to_le64(val) bswap_64(val) argument
156 #define cpu_to_be16(val) (val) argument
157 #define cpu_to_be32(val) (val) argument
158 #define cpu_to_be64(val) (val) argument
161 static uint16_t elf16_to_cpu(uint16_t val) in elf16_to_cpu()
169 static uint32_t elf32_to_cpu(uint32_t val) in elf32_to_cpu()
177 static uint32_t cpu_to_elf32(uint32_t val) in cpu_to_elf32()
189 static uint64_t elf64_to_cpu(uint64_t val) in elf64_to_cpu()
665 # define process process_64 macro
667 # define process process_32 macro
670 void process(FILE *fp, int as_text, int as_bin, in process() function