Home
last modified time | relevance | path

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

/DragonStub/inc/dragonstub/linux/
H A Dbyteorder.h147 static inline void le16_add_cpu(__le16 *var, u16 val) in le16_add_cpu() argument
149 *var = cpu_to_le16(le16_to_cpu(*var) + val); in le16_add_cpu()
152 static inline void le32_add_cpu(__le32 *var, u32 val) in le32_add_cpu() argument
154 *var = cpu_to_le32(le32_to_cpu(*var) + val); in le32_add_cpu()
157 static inline void le64_add_cpu(__le64 *var, u64 val) in le64_add_cpu() argument
159 *var = cpu_to_le64(le64_to_cpu(*var) + val); in le64_add_cpu()
179 static inline void be16_add_cpu(__be16 *var, u16 val) in be16_add_cpu() argument
181 *var = cpu_to_be16(be16_to_cpu(*var) + val); in be16_add_cpu()
184 static inline void be32_add_cpu(__be32 *var, u32 val) in be32_add_cpu() argument
186 *var = cpu_to_be32(be32_to_cpu(*var) + val); in be32_add_cpu()
[all …]
/DragonStub/inc/dragonstub/
H A Ddragonstub.h393 #define fdt_setprop_inplace_var(fdt, node_offset, name, var) \ argument
394 fdt_setprop_inplace((fdt), (node_offset), (name), &(var), sizeof(var))
398 #define fdt_setprop_var(fdt, node_offset, name, var) \ argument
399 fdt_setprop((fdt), (node_offset), (name), &(var), sizeof(var))