Lines Matching refs:rettype

368 #define PVOP_RETVAL(rettype)						\
370 BUILD_BUG_ON(sizeof(rettype) > sizeof(unsigned long)); \
371 switch (sizeof(rettype)) { \
421 #define __PVOP_CALL(rettype, op, ...) \
422 ____PVOP_CALL(PVOP_RETVAL(rettype), op, \
425 #define __PVOP_ALT_CALL(rettype, op, alt, cond, ...) \
426 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op, alt, cond, \
430 #define __PVOP_CALLEESAVE(rettype, op, ...) \
431 ____PVOP_CALL(PVOP_RETVAL(rettype), op.func, \
434 #define __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond, ...) \
435 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op.func, alt, cond, \
457 #define PVOP_CALL0(rettype, op) \
458 __PVOP_CALL(rettype, op)
461 #define PVOP_ALT_CALL0(rettype, op, alt, cond) \
462 __PVOP_ALT_CALL(rettype, op, alt, cond)
466 #define PVOP_CALLEE0(rettype, op) \
467 __PVOP_CALLEESAVE(rettype, op)
470 #define PVOP_ALT_CALLEE0(rettype, op, alt, cond) \
471 __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond)
476 #define PVOP_CALL1(rettype, op, arg1) \
477 __PVOP_CALL(rettype, op, PVOP_CALL_ARG1(arg1))
483 #define PVOP_CALLEE1(rettype, op, arg1) \
484 __PVOP_CALLEESAVE(rettype, op, PVOP_CALL_ARG1(arg1))
487 #define PVOP_ALT_CALLEE1(rettype, op, arg1, alt, cond) \
488 __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond, PVOP_CALL_ARG1(arg1))
493 #define PVOP_CALL2(rettype, op, arg1, arg2) \
494 __PVOP_CALL(rettype, op, PVOP_CALL_ARG1(arg1), PVOP_CALL_ARG2(arg2))
498 #define PVOP_CALL3(rettype, op, arg1, arg2, arg3) \
499 __PVOP_CALL(rettype, op, PVOP_CALL_ARG1(arg1), \
505 #define PVOP_CALL4(rettype, op, arg1, arg2, arg3, arg4) \
506 __PVOP_CALL(rettype, op, \