Lines Matching refs:name
75 #define BUILD_CPC_R_(name, off) \ argument
76 static inline u32 *addr_cpc_##name(void) \
81 static inline u32 read_cpc_##name(void) \
86 #define BUILD_CPC__W(name, off) \ argument
87 static inline void write_cpc_##name(u32 value) \
92 #define BUILD_CPC_RW(name, off) \ argument
93 BUILD_CPC_R_(name, off) \
94 BUILD_CPC__W(name, off)
96 #define BUILD_CPC_Cx_R_(name, off) \ argument
97 BUILD_CPC_R_(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \
98 BUILD_CPC_R_(co_##name, MIPS_CPC_COCB_OFS + (off))
100 #define BUILD_CPC_Cx__W(name, off) \ argument
101 BUILD_CPC__W(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \
102 BUILD_CPC__W(co_##name, MIPS_CPC_COCB_OFS + (off))
104 #define BUILD_CPC_Cx_RW(name, off) \ argument
105 BUILD_CPC_Cx_R_(name, off) \
106 BUILD_CPC_Cx__W(name, off)