Searched refs:reduction (Results 1 - 25 of 60) sorted by relevance

123

/external/clang/test/OpenMP/
H A Dparallel_reduction_messages.cpp78 #pragma omp parallel reduction // expected-error {{expected '(' after 'reduction'}}
80 #pragma omp parallel reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel' are ignored}}
82 #pragma omp parallel reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
84 #pragma omp parallel reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
86 #pragma omp parallel reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dparallel_sections_reduction_messages.cpp78 #pragma omp parallel sections reduction // expected-error {{expected '(' after 'reduction'}}
82 #pragma omp parallel sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel sections' are ignored}}
86 #pragma omp parallel sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp parallel sections reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
94 #pragma omp parallel sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dsections_reduction_messages.cpp79 #pragma omp sections reduction // expected-error {{expected '(' after 'reduction'}}
84 #pragma omp sections reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp sections' are ignored}}
89 #pragma omp sections reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
94 #pragma omp sections reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
99 #pragma omp sections reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dsimd_reduction_messages.cpp78 #pragma omp simd reduction // expected-error {{expected '(' after 'reduction'}}
81 #pragma omp simd reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp simd' are ignored}}
84 #pragma omp simd reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
87 #pragma omp simd reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp simd reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dfor_reduction_messages.cpp79 #pragma omp for reduction // expected-error {{expected '(' after 'reduction'}}
83 #pragma omp for reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp for' are ignored}}
87 #pragma omp for reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
91 #pragma omp for reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
95 #pragma omp for reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dparallel_for_reduction_messages.cpp78 #pragma omp parallel for reduction // expected-error {{expected '(' after 'reduction'}}
81 #pragma omp parallel for reduction + // expected-error {{expected '(' after 'reduction'}} expected-warning {{extra tokens at the end of '#pragma omp parallel for' are ignored}}
84 #pragma omp parallel for reduction( // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected ')'}} expected-note {{to match this '('}}
87 #pragma omp parallel for reduction(- // expected-warning {{missing ':' after reduction identifier - ignoring}} expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
90 #pragma omp parallel for reduction() // expected-error {{expected unqualified-id}} expected-warning {{missing ':' after reduction identifie
[all...]
H A Dparallel_ast_print.cpp38 #pragma omp parallel default(none), private(argc,b) firstprivate(argv) shared (d) if (argc > 0) num_threads(C) copyin(S<T>::TS) proc_bind(master) reduction(+:c) reduction(max:e)
40 #pragma omp parallel if (C) num_threads(s) proc_bind(close) reduction(^:e, f) reduction(&& : g)
51 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
53 // CHECK-NEXT: #pragma omp parallel if(5) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g)
61 // CHECK-NEXT: #pragma omp parallel default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c) reduction(ma
[all...]
H A Dparallel_sections_ast_print.cpp40 #pragma omp parallel sections default(none), private(argc, b) firstprivate(argv) shared(d) if (argc > 0) num_threads(C) copyin(S < T > ::TS) proc_bind(master) reduction(+ : c) reduction(max : e)
44 #pragma omp parallel sections if (C) num_threads(s) proc_bind(close) reduction(^ : e, f) reduction(&& : g) lastprivate(b, c)
61 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(5) copyin(S<int>::TS) proc_bind(master) reduction(+: c) reduction(max: e)
65 // CHECK-NEXT: #pragma omp parallel sections if(5) num_threads(s) proc_bind(close) reduction(^: e,f) reduction(&&: g) lastprivate(b,c)
79 // CHECK-NEXT: #pragma omp parallel sections default(none) private(argc,b) firstprivate(argv) shared(d) if(argc > 0) num_threads(1) copyin(S<long>::TS) proc_bind(master) reduction(+: c) reduction(ma
[all...]
H A Dsections_ast_print.cpp17 #pragma omp sections private(argc, b), firstprivate(c, d), lastprivate(d, f) reduction(- : g) nowait
22 // CHECK-NEXT: #pragma omp sections private(argc,b) firstprivate(c,d) lastprivate(d,f) reduction(-: g) nowait
34 #pragma omp sections private(argc, b), firstprivate(argv, c), lastprivate(d, f) reduction(+ : g) nowait
42 // CHECK-NEXT: #pragma omp sections private(argc,b) firstprivate(argv,c) lastprivate(d,f) reduction(+: g) nowait
H A Dsimd_misc_messages.c467 // expected-warning@+1 {{missing ':' after reduction identifier - ignoring}}
468 #pragma omp simd reduction(
471 // expected-warning@+1 {{missing ':' after reduction identifier - ignoring}}
472 #pragma omp simd reduction()
475 // expected-warning@+1 {{missing ':' after reduction identifier - ignoring}}
476 #pragma omp simd reduction(x)
479 #pragma omp simd reduction(:x)
483 // expected-warning@+1 {{missing ':' after reduction identifier - ignoring}}
484 #pragma omp simd reduction(,
488 // expected-warning@+1 {{missing ':' after reduction identifie
[all...]
H A Dparallel_for_ast_print.cpp24 #pragma omp parallel for private(argc, b), firstprivate(c, d), lastprivate(d, f) collapse(N) schedule(static, N) ordered if (argc) num_threads(N) default(shared) shared(e) reduction(+ : h)
31 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(c,d) lastprivate(d,f) collapse(N) schedule(static, N) ordered if(argc) num_threads(N) default(shared) shared(e) reduction(+: h)
53 #pragma omp parallel for private(argc, b), firstprivate(argv, c), lastprivate(d, f) collapse(2) schedule(auto) ordered if (argc) num_threads(a) default(shared) shared(e) reduction(+ : h)
57 // CHECK-NEXT: #pragma omp parallel for private(argc,b) firstprivate(argv,c) lastprivate(d,f) collapse(2) schedule(auto) ordered if(argc) num_threads(a) default(shared) shared(e) reduction(+: h)
/external/chromium_org/third_party/skia/src/pathops/
H A DSkReduceOrder.cpp16 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { argument
17 reduction[0] = reduction[1] = quad[0];
21 static int reductionLineCount(const SkDQuad& reduction) { argument
22 return 1 + !reduction[0].approximatelyEqual(reduction[1]);
25 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { argument
26 reduction[0] = quad[0];
27 reduction[1] = quad[2];
28 return reductionLineCount(reduction);
31 horizontal_line(const SkDQuad& quad, SkDQuad& reduction) argument
37 check_linear(const SkDQuad& quad, int minX, int maxX, int minY, int maxY, SkDQuad& reduction) argument
109 coincident_line(const SkDCubic& cubic, SkDCubic& reduction) argument
114 reductionLineCount(const SkDCubic& reduction) argument
118 vertical_line(const SkDCubic& cubic, SkDCubic& reduction) argument
124 horizontal_line(const SkDCubic& cubic, SkDCubic& reduction) argument
131 check_quadratic(const SkDCubic& cubic, SkDCubic& reduction) argument
157 check_linear(const SkDCubic& cubic, int minX, int maxX, int minY, int maxY, SkDCubic& reduction) argument
[all...]
/external/skia/src/pathops/
H A DSkReduceOrder.cpp16 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { argument
17 reduction[0] = reduction[1] = quad[0];
21 static int reductionLineCount(const SkDQuad& reduction) { argument
22 return 1 + !reduction[0].approximatelyEqual(reduction[1]);
25 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { argument
26 reduction[0] = quad[0];
27 reduction[1] = quad[2];
28 return reductionLineCount(reduction);
31 horizontal_line(const SkDQuad& quad, SkDQuad& reduction) argument
37 check_linear(const SkDQuad& quad, int minX, int maxX, int minY, int maxY, SkDQuad& reduction) argument
109 coincident_line(const SkDCubic& cubic, SkDCubic& reduction) argument
114 reductionLineCount(const SkDCubic& reduction) argument
118 vertical_line(const SkDCubic& cubic, SkDCubic& reduction) argument
124 horizontal_line(const SkDCubic& cubic, SkDCubic& reduction) argument
131 check_quadratic(const SkDCubic& cubic, SkDCubic& reduction) argument
157 check_linear(const SkDCubic& cubic, int minX, int maxX, int minY, int maxY, SkDCubic& reduction) argument
[all...]
/external/chromium_org/v8/src/compiler/
H A Dsimplified-operator-reducer-unittest.cc164 Reduction reduction = Reduce( local
166 EXPECT_FALSE(reduction.Changed());
181 Reduction reduction = Reduce( local
184 ASSERT_TRUE(reduction.Changed());
185 EXPECT_EQ(param0, reduction.replacement());
211 Reduction reduction = Reduce(graph()->NewNode( local
214 ASSERT_TRUE(reduction.Changed());
215 EXPECT_EQ(param0, reduction.replacement());
220 Reduction reduction = Reduce( local
222 ASSERT_TRUE(reduction
228 Reduction reduction = Reduce( local
240 Reduction reduction = Reduce( local
248 Reduction reduction = local
257 Reduction reduction = Reduce(graph()->NewNode( local
271 Reduction reduction = Reduce(graph()->NewNode( local
285 Reduction reduction = Reduce(graph()->NewNode( local
300 Reduction reduction = Reduce(graph()->NewNode( local
311 Reduction reduction = Reduce(graph()->NewNode( local
322 Reduction reduction = Reduce(graph()->NewNode( local
332 Reduction reduction = Reduce(graph()->NewNode( local
341 Reduction reduction = local
350 Reduction reduction = local
365 Reduction reduction = Reduce(graph()->NewNode( local
376 Reduction reduction = Reduce(graph()->NewNode( local
386 Reduction reduction = Reduce(graph()->NewNode( local
395 Reduction reduction = local
404 Reduction reduction = local
419 Reduction reduction = Reduce(graph()->NewNode( local
430 Reduction reduction = Reduce(graph()->NewNode( local
440 Reduction reduction = Reduce(graph()->NewNode( local
450 Reduction reduction = local
459 Reduction reduction = local
473 Reduction reduction = local
[all...]
H A Dchange-lowering-unittest.cc128 Reduction reduction = Reduce(node); local
129 ASSERT_TRUE(reduction.Changed());
131 Node* phi = reduction.replacement();
145 Reduction reduction = Reduce(node); local
146 ASSERT_TRUE(reduction.Changed());
148 EXPECT_THAT(reduction.replacement(), IsWordEqual(val, IsTrueConstant()));
155 Reduction reduction = Reduce(node); local
156 ASSERT_TRUE(reduction.Changed());
158 Node* finish = reduction.replacement();
174 Reduction reduction local
199 Reduction reduction = Reduce(node); local
229 Reduction reduction = Reduce(node); local
258 Reduction reduction = Reduce(node); local
284 Reduction reduction = Reduce(node); local
310 Reduction reduction = Reduce(node); local
351 Reduction reduction = Reduce(node); local
366 Reduction reduction = Reduce(node); local
395 Reduction reduction = Reduce(node); local
422 Reduction reduction = Reduce(node); local
449 Reduction reduction = Reduce(node); local
[all...]
H A Dmachine-operator-reducer-unittest.cc234 Reduction reduction = local
236 EXPECT_FALSE(reduction.Changed());
251 Reduction reduction = Reduce(graph()->NewNode( local
253 ASSERT_TRUE(reduction.Changed());
254 EXPECT_THAT(reduction.replacement(), IsFloat64Constant(x));
266 Reduction reduction = Reduce(graph()->NewNode( local
269 ASSERT_TRUE(reduction.Changed());
270 EXPECT_EQ(value, reduction.replacement());
276 Reduction reduction = Reduce(graph()->NewNode( local
278 ASSERT_TRUE(reduction
291 Reduction reduction = Reduce(graph()->NewNode( local
301 Reduction reduction = Reduce(graph()->NewNode( local
315 Reduction reduction = Reduce( local
329 Reduction reduction = Reduce( local
343 Reduction reduction = local
358 Reduction reduction = local
375 Reduction reduction = Reduce(graph()->NewNode( local
385 Reduction reduction = Reduce(graph()->NewNode( local
400 Reduction reduction = Reduce(graph()->NewNode( local
410 Reduction reduction = Reduce(graph()->NewNode( local
424 Reduction reduction = Reduce(graph()->NewNode( local
434 Reduction reduction = Reduce( local
503 Reduction reduction = Reduce(node); local
514 Reduction reduction = Reduce(node); local
[all...]
H A Dgraph-reducer.cc35 Reduction reduction = (*i)->Reduce(node); local
36 Node* replacement = reduction.replacement();
40 // {replacement == node} represents an in-place reduction.
42 // as now there may be more opportunities for reduction.
57 // {node} with {replacement}. New nodes created by this reduction can
89 // Perform a post-order reduction of all nodes starting from the end.
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp19 static int coincident_line(const Quadratic& quad, Quadratic& reduction) { argument
20 reduction[0] = reduction[1] = quad[0];
25 Quadratic& reduction) {
27 reduction[0] = quad[0];
28 reduction[1] = quad[2];
32 int smaller = reduction[1].y > reduction[0].y;
36 if (reduction[smaller].y > yExtrema) {
37 reduction[smalle
24 vertical_line(const Quadratic& quad, ReduceOrder_Styles reduceStyle, Quadratic& reduction) argument
45 horizontal_line(const Quadratic& quad, ReduceOrder_Styles reduceStyle, Quadratic& reduction) argument
66 check_linear(const Quadratic& quad, ReduceOrder_Styles reduceStyle, int minX, int maxX, int minY, int maxY, Quadratic& reduction) argument
142 reduceOrder(const Quadratic& quad, Quadratic& reduction, ReduceOrder_Styles reduceStyle) argument
[all...]
H A DCubicReduceOrder.cpp22 static int coincident_line(const Cubic& cubic, Cubic& reduction) { argument
23 reduction[0] = reduction[1] = cubic[0];
27 static int vertical_line(const Cubic& cubic, ReduceOrder_Styles reduceStyle, Cubic& reduction) { argument
29 reduction[0] = cubic[0];
30 reduction[1] = cubic[3];
34 int smaller = reduction[1].y > reduction[0].y;
39 if (reduction[smaller].y > yExtrema) {
40 reduction[smalle
50 horizontal_line(const Cubic& cubic, ReduceOrder_Styles reduceStyle, Cubic& reduction) argument
74 check_quadratic(const Cubic& cubic, Cubic& reduction) argument
94 check_linear(const Cubic& cubic, ReduceOrder_Styles reduceStyle, int minX, int maxX, int minY, int maxY, Cubic& reduction) argument
197 reduceOrder(const Cubic& cubic, Cubic& reduction, ReduceOrder_Quadratics allowQuadratics, ReduceOrder_Styles reduceStyle) argument
[all...]
/external/skia/experimental/Intersection/
H A DQuadraticReduceOrder.cpp19 static int coincident_line(const Quadratic& quad, Quadratic& reduction) { argument
20 reduction[0] = reduction[1] = quad[0];
25 Quadratic& reduction) {
27 reduction[0] = quad[0];
28 reduction[1] = quad[2];
32 int smaller = reduction[1].y > reduction[0].y;
36 if (reduction[smaller].y > yExtrema) {
37 reduction[smalle
24 vertical_line(const Quadratic& quad, ReduceOrder_Styles reduceStyle, Quadratic& reduction) argument
45 horizontal_line(const Quadratic& quad, ReduceOrder_Styles reduceStyle, Quadratic& reduction) argument
66 check_linear(const Quadratic& quad, ReduceOrder_Styles reduceStyle, int minX, int maxX, int minY, int maxY, Quadratic& reduction) argument
142 reduceOrder(const Quadratic& quad, Quadratic& reduction, ReduceOrder_Styles reduceStyle) argument
[all...]
H A DCubicReduceOrder.cpp22 static int coincident_line(const Cubic& cubic, Cubic& reduction) { argument
23 reduction[0] = reduction[1] = cubic[0];
27 static int vertical_line(const Cubic& cubic, ReduceOrder_Styles reduceStyle, Cubic& reduction) { argument
29 reduction[0] = cubic[0];
30 reduction[1] = cubic[3];
34 int smaller = reduction[1].y > reduction[0].y;
39 if (reduction[smaller].y > yExtrema) {
40 reduction[smalle
50 horizontal_line(const Cubic& cubic, ReduceOrder_Styles reduceStyle, Cubic& reduction) argument
74 check_quadratic(const Cubic& cubic, Cubic& reduction) argument
94 check_linear(const Cubic& cubic, ReduceOrder_Styles reduceStyle, int minX, int maxX, int minY, int maxY, Cubic& reduction) argument
197 reduceOrder(const Cubic& cubic, Cubic& reduction, ReduceOrder_Quadratics allowQuadratics, ReduceOrder_Styles reduceStyle) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DDynamicsCompressorNode.idl31 readonly attribute AudioParam reduction; // in Decibels
H A DDynamicsCompressorNode.cpp89 float reduction = m_dynamicsCompressor->parameterValue(DynamicsCompressor::ParamReduction); local
90 m_reduction->setValue(reduction);
/external/chromium_org/third_party/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp90 static bool check_quadratic(const Cubic& cubic, Quadratic& reduction) { argument
105 reduction[0] = cubic[0];
106 reduction[1].x = midX;
107 reduction[1].y = midY;
108 reduction[2] = cubic[3];
/external/skia/src/utils/win/
H A DSkDWriteGeometrySink.cpp90 static bool check_quadratic(const Cubic& cubic, Quadratic& reduction) { argument
105 reduction[0] = cubic[0];
106 reduction[1].x = midX;
107 reduction[1].y = midY;
108 reduction[2] = cubic[3];

Completed in 601 milliseconds

123