Lines Matching refs:_op
83 #define DEFINE_SYSOP_FUNC(_op) \ argument
84 static inline void _op(void) \
86 __asm__ (#_op); \
90 #define DEFINE_SYSOP_PARAM_FUNC(_op) \ argument
91 static inline void _op(uint64_t v) \
93 __asm__ (#_op " %0" : : "r" (v)); \
97 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
98 static inline void _op ## _type(void) \
100 __asm__ (#_op " " #_type : : : "memory"); \
104 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
105 static inline void _op ## _type(uint64_t v) \
107 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \