Lines Matching refs:name
65 #define BUILD_CPC_R_(name, off) \ argument
66 static inline u32 *addr_cpc_##name(void) \
71 static inline u32 read_cpc_##name(void) \
76 #define BUILD_CPC__W(name, off) \ argument
77 static inline void write_cpc_##name(u32 value) \
82 #define BUILD_CPC_RW(name, off) \ argument
83 BUILD_CPC_R_(name, off) \
84 BUILD_CPC__W(name, off)
86 #define BUILD_CPC_Cx_R_(name, off) \ argument
87 BUILD_CPC_R_(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \
88 BUILD_CPC_R_(co_##name, MIPS_CPC_COCB_OFS + (off))
90 #define BUILD_CPC_Cx__W(name, off) \ argument
91 BUILD_CPC__W(cl_##name, MIPS_CPC_CLCB_OFS + (off)) \
92 BUILD_CPC__W(co_##name, MIPS_CPC_COCB_OFS + (off))
94 #define BUILD_CPC_Cx_RW(name, off) \ argument
95 BUILD_CPC_Cx_R_(name, off) \
96 BUILD_CPC_Cx__W(name, off)