Lines Matching refs:_op
111 #define _DEFINE_TLBIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
112 static inline void tlbi##_op(void) \
118 #define _DEFINE_BPIOP_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
119 static inline void bpi##_op(void) \
125 #define _DEFINE_TLBIOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
126 static inline void tlbi##_op(u_register_t v) \
132 #define DEFINE_TLBIOP_FUNC(_op, ...) \ argument
133 _DEFINE_TLBIOP_FUNC(_op, __VA_ARGS__)
136 #define DEFINE_TLBIOP_PARAM_FUNC(_op, ...) \ argument
137 _DEFINE_TLBIOP_PARAM_FUNC(_op, __VA_ARGS__)
140 #define DEFINE_BPIOP_FUNC(_op, ...) \ argument
141 _DEFINE_BPIOP_FUNC(_op, __VA_ARGS__)
146 #define _DEFINE_DCOP_PARAM_FUNC(_op, coproc, opc1, CRn, CRm, opc2) \ argument
147 static inline void dc##_op(u_register_t v) \
153 #define DEFINE_DCOP_PARAM_FUNC(_op, ...) \ argument
154 _DEFINE_DCOP_PARAM_FUNC(_op, __VA_ARGS__)
160 #define DEFINE_SYSOP_FUNC(_op) \ argument
161 static inline void _op(void) \
163 __asm__ (#_op); \
168 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
169 static inline void _op ## _type(void) \
171 __asm__ (#_op " " #_type : : : "memory"); \
175 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
176 static inline void _op ## _type(u_register_t v) \
178 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \