Searched refs:reduction (Results 26 - 50 of 60) sorted by relevance

123

/external/chromium_org/v8/test/cctest/compiler/
H A Dtest-machine-operator-reducer.cc87 // Check that the reduction of this binop applied to constants {a} and {b}
94 // Check that the reduction of this binop applied to {a} and {b} yields
101 Reduction reduction = reducer.Reduce(n); local
102 CHECK(reduction.Changed());
103 CHECK_NE(n, reduction.replacement());
104 CHECK_EQ(expect, ValueOf<T>(reduction.replacement()->op()));
107 // Check that the reduction of this binop applied to {a} and {b} yields
113 Reduction reduction = reducer.Reduce(n); local
114 CHECK(reduction.Changed());
115 CHECK_EQ(expect, reduction
125 Reduction reduction = reducer.Reduce(n); local
172 Reduction reduction = reducer.Reduce(n); local
180 Reduction reduction = reducer.Reduce(n); local
196 Reduction reduction = reducer.Reduce(n); local
[all...]
H A Dtest-phi-reducer.cc34 Reduction reduction = reducer.Reduce(phi); local
36 CHECK(!reduction.Changed());
38 CHECK(reduction.Changed());
39 CHECK_EQ(expect, reduction.replacement());
H A Dtest-js-typed-lowering.cc77 Reduction reduction = reducer.Reduce(node); local
78 if (reduction.Changed()) return reduction.replacement();
457 // If number constants are eagerly typed, then reduction should
603 CHECK_EQ(IrOpcode::kJSToString, r->opcode()); // No reduction.
748 CHECK_EQ(cmp, r); // No reduction of mixed types.
865 // Helper class for testing the reduction of a single binop.
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DCurveIntersection.h37 int reduceOrder(const Cubic& cubic, Cubic& reduction, ReduceOrder_Quadratics ,
39 int reduceOrder(const _Line& line, _Line& reduction);
40 int reduceOrder(const Quadratic& quad, Quadratic& reduction, ReduceOrder_Styles );
/external/skia/experimental/Intersection/
H A DCurveIntersection.h37 int reduceOrder(const Cubic& cubic, Cubic& reduction, ReduceOrder_Quadratics ,
39 int reduceOrder(const _Line& line, _Line& reduction);
40 int reduceOrder(const Quadratic& quad, Quadratic& reduction, ReduceOrder_Styles );
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DDynamicsCompressorNode.h60 AudioParam* reduction() { return m_reduction.get(); } function in class:blink::FINAL
/external/chromium_org/v8/src/compiler/
H A Djs-builtin-reducer.cc17 // produce an effect. Replaces {node} with {reduction} and relaxes effects.
18 static Reduction ReplaceWithPureReduction(Node* node, Reduction reduction) { argument
19 if (reduction.Changed()) {
20 NodeProperties::ReplaceWithValue(node, reduction.replacement());
21 return reduction;
28 // for reduction when they have a BuiltinFunctionId associated with them.
H A Djs-typed-lowering.cc622 static Reduction ReplaceWithReduction(Node* node, Reduction reduction) { argument
623 if (reduction.Changed()) {
624 NodeProperties::ReplaceWithValue(node, reduction.replacement());
625 return reduction;
/external/clang/test/OpenMP/
H A Dparallel_sections_firstprivate_messages.cpp150 #pragma omp parallel reduction(+ : i)
288 #pragma omp parallel reduction(+ : i)
H A Dsections_firstprivate_messages.cpp165 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
328 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
H A Dsingle_firstprivate_messages.cpp129 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
234 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
H A Dfor_firstprivate_messages.cpp148 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
287 #pragma omp parallel reduction(+ : i) // expected-note {{defined as reduction}}
H A Dparallel_for_firstprivate_messages.cpp133 #pragma omp parallel reduction(+ : i)
246 #pragma omp parallel reduction(+ : i)
H A Dparallel_sections_lastprivate_messages.cpp251 #pragma omp parallel reduction(+ : xa)
H A Dsections_lastprivate_messages.cpp288 #pragma omp parallel reduction(+ : xa) // expected-note {{defined as reduction}}
H A Dfor_lastprivate_messages.cpp249 #pragma omp parallel reduction(+ : xa) // expected-note {{defined as reduction}}
H A Dparallel_for_lastprivate_messages.cpp212 #pragma omp parallel reduction(+ : xa)
/external/chromium_org/third_party/libyuv/util/
H A Dpsnr.cc218 #pragma omp parallel for reduction(+: sse)
H A Dssim.cc287 #pragma omp parallel for reduction(+: SSIM)
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dcross_correlation_neon.S17 @ C code in file cross_correlation.c, due to reduction of shift operations
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/libyuv/source/
H A Dcompare.cc130 #pragma omp parallel for reduction(+: sse)
/external/chromium_org/third_party/libyuv/source/
H A Dcompare.cc130 #pragma omp parallel for reduction(+: sse)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DAutoTableLayout.cpp568 int reduction = std::min(cellLogicalWidth, excess); local
570 excess -= reduction;
571 int newLogicalWidth = std::max<int>(m_layoutStruct[i].effectiveMinLogicalWidth, cellLogicalWidth - reduction);
/external/libyuv/files/source/
H A Dcompare.cc372 #pragma omp parallel for reduction(+: sse)
/external/blktrace/btreplay/doc/
H A Dbtreplay.tex163 reduction in replay timing accuracy.}.
191 and thus ensure IO ordering across devices, with some reduction in
506 divided by half resulting in a reduction of the execution time by

Completed in 444 milliseconds

123