Lines Matching refs:_op
108 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
109 static inline void tlbi##_op(void) \
115 #define _DEFINE_BPIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
116 static inline void bpi##_op(void) \
122 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
123 static inline void tlbi##_op(u_register_t v) \
129 #define DEFINE_TLBIOP_FUNC(_op, ...) \ argument
130 _DEFINE_TLBIOP_FUNC(_op, __VA_ARGS__)
133 #define DEFINE_TLBIOP_PARAM_FUNC(_op, ...) \ argument
134 _DEFINE_TLBIOP_PARAM_FUNC(_op, __VA_ARGS__)
137 #define DEFINE_BPIOP_FUNC(_op, ...) \ argument
138 _DEFINE_BPIOP_FUNC(_op, __VA_ARGS__)
143 #define _DEFINE_DCOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
144 static inline void dc##_op(u_register_t v) \
150 #define DEFINE_DCOP_PARAM_FUNC(_op, ...) \ argument
151 _DEFINE_DCOP_PARAM_FUNC(_op, __VA_ARGS__)
157 #define DEFINE_SYSOP_FUNC(_op) \ argument
158 static inline void _op(void) \
160 __asm__ (#_op); \
165 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
166 static inline void _op ## _type(void) \
168 __asm__ (#_op " " #_type); \
172 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
173 static inline void _op ## _type(u_register_t v) \
175 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \