Lines Matching refs:sections

18 #pragma omp parallel sections reduction(+:fp) // expected-warning {{variable 'fp' is uninitialized …  in xxx()
33 #pragma omp parallel sections reduction(+:ref) in foobar()
111 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}} in tmain()
115 #pragma omp parallel sections reduction + // expected-error {{expected '(' after 'reduction'}} expe… in tmain()
119 #pragma omp parallel sections reduction( // expected-error {{expected unqualified-id}} expected-war… in tmain()
123 #pragma omp parallel sections reduction(- // expected-warning {{missing ':' after reduction identif… in tmain()
127 #pragma omp parallel sections reduction() // expected-error {{expected unqualified-id}} expected-wa… in tmain()
131 #pragma omp parallel sections reduction(*) // expected-warning {{missing ':' after reduction identi… in tmain()
135 #pragma omp parallel sections reduction(\) // expected-error {{expected unqualified-id}} expected-w… in tmain()
139 #pragma omp parallel sections reduction(& : argc // expected-error {{expected ')'}} expected-note {… in tmain()
143 #pragma omp parallel sections reduction(| : argc, // expected-error {{expected expression}} expecte… in tmain()
147 #pragma omp parallel sections reduction(|| : argc ? i : argc) // expected-error 2 {{expected variab… in tmain()
151 #pragma omp parallel sections reduction(foo : argc) //expected-error {{incorrect reduction identifi… in tmain()
155 #pragma omp parallel sections reduction(&& : argc) allocate , allocate(, allocate(omp_default , all… in tmain()
159 #pragma omp parallel sections reduction(^ : T) // expected-error {{'T' does not refer to a value}} in tmain()
163 #pragma omp parallel sections reduction(+ : z, a, b, c, d, f) // expected-error {{a reduction list … in tmain()
167 #pragma omp parallel sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list i… in tmain()
171 #pragma omp parallel sections reduction(max : h.b) // expected-error {{expected variable name, arra… in tmain()
175 #pragma omp parallel sections reduction(+ : ba) // expected-error {{const-qualified variable cannot… in tmain()
179 #pragma omp parallel sections reduction(* : ca) // expected-error {{const-qualified variable cannot… in tmain()
183 #pragma omp parallel sections reduction(- : da) // expected-error {{const-qualified variable cannot… in tmain()
187 #pragma omp parallel sections reduction(^ : fl) // expected-error {{invalid operands to binary expr… in tmain()
191 #pragma omp parallel sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be… in tmain()
195 #pragma omp parallel sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable… in tmain()
199 #pragma omp parallel sections reduction(+ : h, k) // expected-error {{threadprivate or thread local… in tmain()
203 #pragma omp parallel sections reduction(+ : o) // expected-error 2 {{no viable overloaded '='}} in tmain()
207 #pragma omp parallel sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 4 {{… in tmain()
212 #pragma omp parallel sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of … in tmain()
216 #pragma omp parallel sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{variable can… in tmain()
220 #pragma omp parallel sections reduction(+ : r) // expected-error 2 {{const-qualified variable canno… in tmain()
226 #pragma omp parallel sections reduction(max : j) // expected-error 2 {{argument of OpenMP clause 'r… in tmain()
231 #pragma omp parallel sections reduction(+ : fl) in tmain()
236 #pragma omp parallel sections reduction(+ : fl) in tmain()
264 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}} in main()
268 #pragma omp parallel sections reduction + // expected-error {{expected '(' after 'reduction'}} expe… in main()
272 #pragma omp parallel sections reduction( // expected-error {{expected unqualified-id}} expected-war… in main()
276 #pragma omp parallel sections reduction(- // expected-warning {{missing ':' after reduction identif… in main()
280 #pragma omp parallel sections reduction() // expected-error {{expected unqualified-id}} expected-wa… in main()
284 #pragma omp parallel sections reduction(*) // expected-warning {{missing ':' after reduction identi… in main()
288 #pragma omp parallel sections reduction(\) // expected-error {{expected unqualified-id}} expected-w… in main()
292 #pragma omp parallel sections reduction(foo : argc // expected-error {{expected ')'}} expected-note… in main()
296 #pragma omp parallel sections reduction(| : argc, // expected-error {{expected expression}} expecte… in main()
300 #pragma omp parallel sections reduction(|| : argc > 0 ? argv[1] : argv[2]) // expected-error {{expe… in main()
304 #pragma omp parallel sections reduction(~ : argc) // expected-error {{expected unqualified-id}} in main()
308 #pragma omp parallel sections reduction(&& : argc) in main()
312 #pragma omp parallel sections reduction(^ : S1) // expected-error {{'S1' does not refer to a value}} in main()
316 #pragma omp parallel sections reduction(+ : a, b, c, d, f) // expected-error {{a reduction list ite… in main()
320 #pragma omp parallel sections reduction(min : a, b, c, d, f) // expected-error {{a reduction list i… in main()
324 #pragma omp parallel sections reduction(max : h.b) // expected-error {{expected variable name, arra… in main()
328 #pragma omp parallel sections reduction(+ : ba) // expected-error {{const-qualified variable cannot… in main()
332 #pragma omp parallel sections reduction(* : ca) // expected-error {{const-qualified variable cannot… in main()
336 #pragma omp parallel sections reduction(- : da) // expected-error {{const-qualified variable cannot… in main()
340 #pragma omp parallel sections reduction(^ : fl) // expected-error {{invalid operands to binary expr… in main()
344 #pragma omp parallel sections reduction(&& : S2::S2s) // expected-error {{shared variable cannot be… in main()
348 #pragma omp parallel sections reduction(&& : S2::S2sc) // expected-error {{const-qualified variable… in main()
352 #pragma omp parallel sections reduction(& : e, g) // expected-error {{calling a private constructor… in main()
356 #pragma omp parallel sections reduction(+ : h, k, B::x) // expected-error 2 {{threadprivate or thre… in main()
360 #pragma omp parallel sections reduction(+ : o, z) // expected-error {{no viable overloaded '='}} in main()
364 #pragma omp parallel sections private(i), reduction(+ : j), reduction(+ : q) // expected-error 2 {{… in main()
369 #pragma omp parallel sections reduction(+ : p), reduction(+ : p) // expected-error 2 {{argument of … in main()
373 #pragma omp parallel sections reduction(+ : p), reduction(+ : p) // expected-error {{variable can a… in main()
377 #pragma omp parallel sections reduction(+ : r) // expected-error {{const-qualified variable cannot … in main()
383 #pragma omp parallel sections reduction(max : j) // expected-error {{argument of OpenMP clause 'red… in main()
388 #pragma omp parallel sections reduction(+ : fl) in main()
393 #pragma omp parallel sections reduction(+ : fl) in main()
398 #pragma omp parallel sections reduction(+ : m) // OK in main()
402 #pragma omp parallel sections reduction(task,+ : m) // omp45-error 2 {{expected expression}} omp45-… in main()