Lines Matching refs:reduction
19 #pragma omp sections reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized when used… in xxx()
35 #pragma omp sections reduction(+:ref) in foobar()
114 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
119 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in tmain()
124 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in tmain()
129 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in tmain()
134 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in tmain()
139 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in tmain()
144 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in tmain()
149 #pragma omp sections reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match… in tmain()
154 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in tmain()
159 #pragma omp sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name, … in tmain()
164 #pragma omp sections reduction(foo : argc) //expected-error {{incorrect reduction identifier, expec… in tmain()
169 #pragma omp sections reduction(&& : argc) allocate , allocate(, allocate(omp_default , allocate(omp… in tmain()
174 #pragma omp sections reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
179 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with in… in tmain()
184 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with … in tmain()
189 #pragma omp sections reduction(max : h.b) // expected-error {{expected variable name, array element… in tmain()
194 #pragma omp sections reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in tmain()
199 #pragma omp sections reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in tmain()
204 #pragma omp sections reduction(- : da) // expected-error {{const-qualified variable cannot be reduc… in tmain()
209 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in tmain()
214 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in tmain()
219 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in tmain()
224 #pragma omp sections reduction(+ : h, k) // expected-error {{threadprivate or thread local variable… in tmain()
229 #pragma omp sections reduction(+ : o, z) // expected-error 2 {{no viable overloaded '='}} in tmain()
234 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{argument … in tmain()
239 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in tmain()
244 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can appear o… in tmain()
249 #pragma omp sections reduction(+ : r) // expected-error 2 {{const-qualified variable cannot be redu… in tmain()
254 #pragma omp parallel reduction(min : i) in tmain()
255 #pragma omp sections reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'reduction'… in tmain()
260 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
264 #pragma omp parallel reduction(* : fl) // expected-note 2 {{defined as reduction}} in tmain()
265 #pragma omp sections reduction(+ : fl) // expected-error 2 {{reduction variable must be shared}} in tmain()
294 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}} in main()
299 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warn… in main()
304 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{mi… in main()
309 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ign… in main()
314 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{m… in main()
319 #pragma omp sections reduction(*) // expected-warning {{missing ':' after reduction identifier - ig… in main()
324 #pragma omp sections reduction(\) // expected-error {{expected unqualified-id}} expected-warning {{… in main()
329 #pragma omp sections reduction(foo : argc // expected-error {{expected ')'}} expected-note {{to mat… in main()
334 #pragma omp sections reduction(| : argc, // expected-error {{expected expression}} expected-error {… in main()
339 #pragma omp sections reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expected vari… in main()
344 #pragma omp sections reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
349 #pragma omp sections reduction(&& : argc, z) in main()
354 #pragma omp sections reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
359 #pragma omp sections reduction(+ : a, b, c, d, f) // expected-error {{a reduction list item with in… in main()
364 #pragma omp sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list item with … in main()
369 #pragma omp sections reduction(max : h.b) // expected-error {{expected variable name, array element… in main()
374 #pragma omp sections reduction(+ : ba) // expected-error {{const-qualified variable cannot be reduc… in main()
379 #pragma omp sections reduction(* : ca) // expected-error {{const-qualified variable cannot be reduc… in main()
384 #pragma omp sections reduction(- : da) // expected-error {{const-qualified variable cannot be reduc… in main()
389 #pragma omp sections reduction(^ : fl) // expected-error {{invalid operands to binary expression ('… in main()
394 #pragma omp sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be reductio… in main()
399 #pragma omp sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable cannot b… in main()
404 #pragma omp sections reduction(& : e, g) // expected-error {{calling a private constructor of class… in main()
409 #pragma omp sections reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thread local … in main()
414 #pragma omp sections reduction(+ : o) // expected-error {{no viable overloaded '='}} in main()
419 #pragma omp sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{argument … in main()
424 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of OpenMP cl… in main()
429 #pragma omp sections reduction(+ : p), reduction(+ : p) // expected-error {{variable can appear onl… in main()
434 #pragma omp sections reduction(+ : r) // expected-error {{const-qualified variable cannot be reduct… in main()
439 #pragma omp parallel reduction(min : i) in main()
440 #pragma omp sections reduction(max : j) // expected-error {{argument of OpenMP clause 'reduction' m… in main()
445 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
449 #pragma omp parallel reduction(* : fl) // expected-note {{defined as reduction}} in main()
450 #pragma omp sections reduction(+ : fl) // expected-error {{reduction variable must be shared}} in main()
455 #pragma omp sections reduction(+ : m) // OK in main()
459 #pragma omp sections reduction(task, + : m) // omp45-error 2 {{expected expression}} omp45-warning … in main()