Lines Matching refs:_op
66 #define DEFINE_SYSOP_FUNC(_op) \ argument
67 static inline void _op(void) \
69 __asm__ (#_op); \
73 #define DEFINE_SYSOP_PARAM_FUNC(_op) \ argument
74 static inline void _op(uint64_t v) \
76 __asm__ (#_op " %0" : : "r" (v)); \
80 #define DEFINE_SYSOP_TYPE_FUNC(_op, _type) \ argument
81 static inline void _op ## _type(void) \
83 __asm__ (#_op " " #_type : : : "memory"); \
87 #define DEFINE_SYSOP_TYPE_PARAM_FUNC(_op, _type) \ argument
88 static inline void _op ## _type(uint64_t v) \
90 __asm__ (#_op " " #_type ", %0" : : "r" (v)); \