Lines Matching +defs:val +defs:x
134 #define ___htonl(x) __cpu_to_be32(x) argument
135 #define ___htons(x) __cpu_to_be16(x) argument
136 #define ___ntohl(x) __be32_to_cpu(x) argument
137 #define ___ntohs(x) __be16_to_cpu(x) argument
139 #define htonl(x) ___htonl(x) argument
140 #define ntohl(x) ___ntohl(x) argument
141 #define htons(x) ___htons(x) argument
142 #define ntohs(x) ___ntohs(x) argument
144 static inline void le16_add_cpu(__le16 *var, u16 val) in le16_add_cpu()
149 static inline void le32_add_cpu(__le32 *var, u32 val) in le32_add_cpu()
154 static inline void le64_add_cpu(__le64 *var, u64 val) in le64_add_cpu()
176 static inline void be16_add_cpu(__be16 *var, u16 val) in be16_add_cpu()
181 static inline void be32_add_cpu(__be32 *var, u32 val) in be32_add_cpu()
186 static inline void be64_add_cpu(__be64 *var, u64 val) in be64_add_cpu()