Lines Matching refs:reduction
79 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
84 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in tmain()
89 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
94 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
99 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
104 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
109 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
114 #pragma omp sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
119 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
124 #pragma omp sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name}} in tmain()
129 #pragma omp sections reduction(foo : argc) //expected-error {{incorrect reduction identifier, expec… in tmain()
134 #pragma omp sections reduction(&& : argc) in tmain()
139 #pragma omp sections reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
144 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{reduction variable with incom… in tmain()
149 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{reduction variable with inc… in tmain()
154 #pragma omp sections reduction(max : qa[1]) // expected-error 2 {{expected variable name}} in tmain()
159 #pragma omp sections reduction(+ : ba) // expected-error {{a reduction variable with array type 'co… in tmain()
164 #pragma omp sections reduction(* : ca) // expected-error {{a reduction variable with array type 'co… in tmain()
169 #pragma omp sections reduction(- : da) // expected-error {{a reduction variable with array type 'co… in tmain()
174 #pragma omp sections reduction(^ : fl) // expected-error {{variable of type 'float' is not valid fo… in tmain()
179 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in tmain()
184 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
189 #pragma omp sections reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in tmain()
194 #pragma omp sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid … in tmain()
199 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument … in tmain()
204 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in tmain()
209 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 3 {{variable can appear o… in tmain()
214 #pragma omp sections reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be redu… in tmain()
219 #pragma omp parallel reduction(min : i) in tmain()
220 #pragma omp sections reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction'… in tmain()
225 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
229 #pragma omp parallel reduction(* : fl) // expected-note 2 {{defined as reduction}} in tmain()
230 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
251 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in main()
256 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in main()
261 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in main()
266 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in main()
271 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in main()
276 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in main()
281 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in main()
286 #pragma omp sections reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to mat… in main()
291 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in main()
296 #pragma omp sections reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected vari… in main()
301 #pragma omp sections reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
306 #pragma omp sections reduction(&& : argc) in main()
311 #pragma omp sections reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
316 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{reduction variable with incom… in main()
321 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{reduction variable with inc… in main()
326 #pragma omp sections reduction(max : argv[1]) // expected-error {{expected variable name}} in main()
331 #pragma omp sections reduction(+ : ba) // expected-error {{a reduction variable with array type 'co… in main()
336 #pragma omp sections reduction(* : ca) // expected-error {{a reduction variable with array type 'co… in main()
341 #pragma omp sections reduction(- : da) // expected-error {{a reduction variable with array type 'co… in main()
346 #pragma omp sections reduction(^ : fl) // expected-error {{variable of type 'float' is not valid fo… in main()
351 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in main()
356 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in main()
361 #pragma omp sections reduction(& : e, g) // expected-error {{reduction variable must have an access… in main()
366 #pragma omp sections reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in main()
371 #pragma omp sections reduction(+ : o) // expected-error {{variable of type 'class S6' is not valid … in main()
376 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument … in main()
381 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in main()
386 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear onl… in main()
391 #pragma omp sections reduction(+ : r) // expected-error {{const-qualified variable cannot be reduct… in main()
396 #pragma omp parallel reduction(min : i) in main()
397 #pragma omp sections reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' m… in main()
402 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
406 #pragma omp parallel reduction(* : fl) // expected-note {{defined as reduction}} in main()
407 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()