Home | History | Annotate | Download | only in radeon

Lines Matching refs:Return

17 // However, these macro's do not return anything unlike the second set below.
52 // Macros that expand into statements with return values
53 #define ExpandCaseTo32bitIntReturn(Instr, Return) \
54 case Instr##_i32: return Return##_i32;
56 #define ExpandCaseToIntReturn(Instr, Return) \
57 ExpandCaseTo32bitIntReturn(Instr, Return)
59 #define ExpandCaseToFloatReturn(Instr, Return) \
60 case Instr##_f32: return Return##_f32;\
62 #define ExpandCaseToAllScalarReturn(Instr, Return) \
63 ExpandCaseToFloatReturn(Instr, Return) \
64 ExpandCaseToIntReturn(Instr, Return)