Searched refs:BaseS1 (Results 1 – 1 of 1) sorted by relevance
/external/clang/test/OpenMP/ |
D | for_reduction_codegen_UDR.cpp | 15 struct BaseS1 { struct 20 struct S : public BaseS, public BaseS1 { argument 26 void red(BaseS1&, const BaseS1&); 27 void red_plus(BaseS1&, const BaseS1&); 28 void init(BaseS1&, const BaseS1&); 29 void init1(BaseS1&, const BaseS1&); 30 void init2(BaseS1&, const BaseS1&); 31 void init_plus(BaseS1&, const BaseS1&); 32 #pragma omp declare reduction(operator& : BaseS1 : red(omp_out, omp_in)) initializer(init(omp_priv,… 33 #pragma omp declare reduction(+ : BaseS1 : red_plus(omp_out, omp_in)) initializer(init_plus(omp_pri…
|