Searched defs:r2 (Results 51 - 75 of 328) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libwebp/dsp/
H A Dupsampling_neon.c30 // Loads 9 pixels each from rows r1 and r2 and generates 16 pixels.
31 #define UPSAMPLE_16PIXELS(r1, r2, out) { \
34 uint8x8_t c = vld1_u8(r2); \
35 uint8x8_t d = vld1_u8(r2 + 1); \
74 static void Upsample16Pixels(const uint8_t *r1, const uint8_t *r2, argument
76 UPSAMPLE_16PIXELS(r1, r2, out);
80 uint8_t r1[9], r2[9]; \
82 memcpy(r2, (bb), (num_pixels)); \
85 memset(r2 + (num_pixels), r2[(num_pixel
[all...]
/external/chromium_org/third_party/skia/experimental/Intersection/
H A DQuadraticBezierClip.cpp70 _Rect r1, r2; local
72 r2.setBounds(q2);
74 if (r1.contains(testPt) && r2.contains(testPt)) {
/external/chromium_org/third_party/skia/tests/
H A DSrcOverTest.cpp58 unsigned r2 = test_srcover2(dst, i); local
65 REPORTER_ASSERT(reporter, r2 <= 255 && r2 >= max);
68 // this shows where r1 (faster) differs from r2 (more exact)
69 if (r1 != r2) {
70 SkDebugf("--- dst=%d i=%d r1=%d r2=%d exact=%g\n",
71 dst, i, r1, r2, i + dst - dst*i/255.0f);
/external/chromium_org/v8/src/base/
H A Ddivision-by-constant.cc36 T r2 = min - q2 * ad; // Init. r2 = rem(2**p, |d|).
47 r2 = 2 * r2; // Update r2 = rem(2**p, |d|).
48 if (r2 >= ad) { // Must be an unsigned comparison here.
50 r2 = r2 - ad;
52 delta = ad - r2;
74 T r2 local
[all...]
/external/chromium_org/v8/test/mjsunit/compiler/
H A Dinline-literals.js72 function r2(s, x, y) { function
77 return r2(s, x, y).replace(/b/, y + x);
/external/clang/test/FixIt/
H A Dtypo.c38 rectangle *r2 = &r1; // expected-error{{unknown type name 'rectangle'; did you mean 'Rectangle'?}} local
41 r2->top_left.y = 0;
/external/clang/test/Sema/
H A Dvector-cast.c26 short r2 = (short)v1; // expected-error {{invalid conversion between vector \ local
/external/skia/experimental/Intersection/
H A DQuadraticBezierClip.cpp70 _Rect r1, r2; local
72 r2.setBounds(q2);
74 if (r1.contains(testPt) && r2.contains(testPt)) {
/external/skia/tests/
H A DSrcOverTest.cpp58 unsigned r2 = test_srcover2(dst, i); local
65 REPORTER_ASSERT(reporter, r2 <= 255 && r2 >= max);
68 // this shows where r1 (faster) differs from r2 (more exact)
69 if (r1 != r2) {
70 SkDebugf("--- dst=%d i=%d r1=%d r2=%d exact=%g\n",
71 dst, i, r1, r2, i + dst - dst*i/255.0f);
/external/webp/src/dsp/
H A Dupsampling_neon.c30 // Loads 9 pixels each from rows r1 and r2 and generates 16 pixels.
31 #define UPSAMPLE_16PIXELS(r1, r2, out) { \
34 uint8x8_t c = vld1_u8(r2); \
35 uint8x8_t d = vld1_u8(r2 + 1); \
74 static void Upsample16Pixels(const uint8_t *r1, const uint8_t *r2, argument
76 UPSAMPLE_16PIXELS(r1, r2, out);
80 uint8_t r1[9], r2[9]; \
82 memcpy(r2, (bb), (num_pixels)); \
85 memset(r2 + (num_pixels), r2[(num_pixel
[all...]
/external/ceres-solver/examples/
H A Dsnavely_reprojection_error.h80 T r2 = xp*xp + yp*yp; local
81 T distortion = T(1.0) + r2 * (l1 + l2 * r2);
143 T r2 = xp*xp + yp*yp; local
144 T distortion = T(1.0) + r2 * (l1 + l2 * r2);
/external/ceres-solver/internal/ceres/
H A Djet_test.cc309 Eigen::Matrix<J, 2, 1> v, r1, r2; local
316 r2 = (v.transpose() * M.transpose()).transpose();
318 ExpectJetsClose(r1(0), r2(0));
319 ExpectJetsClose(r1(1), r2(1));
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring.cc30 const AccessibilityFocusRing& r2,
35 r1.points[i].x() * (1 - fraction) + r2.points[i].x() * fraction,
36 r1.points[i].y() * (1 - fraction) + r2.points[i].y() * fraction);
28 Interpolate( const AccessibilityFocusRing& r1, const AccessibilityFocusRing& r2, double fraction) argument
/external/chromium_org/content/browser/loader/
H A Dupload_data_stream_builder_unittest.cc86 const net::UploadFileElementReader* r2 = local
88 ASSERT_TRUE(r2);
89 EXPECT_EQ(kFilePath, r2->path().value());
90 EXPECT_EQ(kFileOffset, r2->range_offset());
91 EXPECT_EQ(kFileLength, r2->range_length());
92 EXPECT_EQ(kFileTime, r2->expected_modification_time());
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPageRuleCollector.cpp38 static inline bool comparePageRules(const StyleRulePage* r1, const StyleRulePage* r2) argument
40 return r1->selector()->specificity() < r2->selector()->specificity();
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGPathSegArc.h30 SVGPathSegArc(SVGPathElement* element, float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
35 , m_r2(r2)
63 float r2() const { return m_r2; } function in class:blink::SVGPathSegArc
64 void setR2(float r2) argument
66 m_r2 = r2;
H A DSVGPathSegListBuilder.cpp138 void SVGPathSegListBuilder::arcTo(float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag, const FloatPoint& targetPoint, PathCoordinateMode mode) argument
143 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcAbs::create(m_pathElement, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag));
145 m_pathSegList->appendWithoutByteStreamSync(SVGPathSegArcRel::create(m_pathElement, targetPoint.x(), targetPoint.y(), r1, r2, angle, largeArcFlag, sweepFlag));
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dfilter_ar_fast_q12_mips.c19 int r0, r1, r2, r3; local
51 "lh %[r2], 2(%[tmpout]) \n\t"
55 "msub %[r2], %[r3] \n\t"
91 "lh %[r2], 2(%[tmpout]) \n\t"
95 "msub %[r2], %[r3] \n\t"
127 [r1] "=&r" (r1), [r2] "=&r" (r2), [r3] "=&r" (r3),
H A Dmin_max_operations_mips.c108 int32_t r, r1, r2, r3; local
127 "slt %[r2], %[totMax], %[tmp32_2] \n\t"
128 "movn %[totMax], %[tmp32_2], %[r2] \n\t"
146 "slt %[r2], %[totMax], %[tmp32_2] \n\t"
147 "movn %[totMax], %[tmp32_2], %[r2] \n\t"
165 "slt %[r2], %[totMax], %[tmp32_2] \n\t"
166 "movn %[totMax], %[tmp32_2], %[r2] \n\t"
184 "slt %[r2], %[totMax], %[tmp32_2] \n\t"
185 "movn %[totMax], %[tmp32_2], %[r2] \n\t"
193 [r1] "=&r" (r1), [r2] "
[all...]
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
H A Dfilters_mips.c26 int32_t r0, r1, r2, r3; local
45 "ulw %[r2], 8(%[in]) \n\t"
50 "lh %[r2], 4(%[in]) \n\t"
62 "dpa.w.ph $ac0, %[r2], %[r2] \n\t"
67 "madd %[r2], %[r2] \n\t"
81 " mfhi %[r2] \n\t"
93 "mfhi %[r2] \n\t"
98 "sll %[r0], %[r2],
[all...]
/external/chromium_org/v8/src/compiler/
H A Dgraph-reducer-unittest.cc55 void ReduceNode(Node* node, Reducer* r1, Reducer* r2) { argument
58 reducer.AddReducer(r2);
62 void ReduceNode(Node* node, Reducer* r1, Reducer* r2, Reducer* r3) { argument
65 reducer.AddReducer(r2);
91 StrictMock<MockReducer> r1, r2; local
94 EXPECT_CALL(r2, Reduce(node0));
95 ReduceNode(node0, &r1, &r2);
101 StrictMock<MockReducer> r1, r2, r3; local
104 EXPECT_CALL(r2, Reduce(node0));
108 EXPECT_CALL(r2, Reduc
[all...]
H A Dvalue-numbering-reducer-unittest.cc78 Reduction r2 = Reduce(n2); local
79 EXPECT_TRUE(r2.Changed());
80 EXPECT_EQ(n1, r2.replacement());
/external/clang/test/SemaCXX/
H A Dexpressions.cpp135 bool r2 = X || Y2; // expected-warning {{use of logical '||' with constant operand}} \ local
/external/clang/test/SemaTemplate/
H A Dinstantiate-template-template-parm.cpp54 typedef gt<2, 1> r2; typedef in struct:Comp
/external/eigen/test/
H A Dproduct_selfadjoint.cpp31 r2 = RowVectorType::Random(rows); local
50 m2.template selfadjointView<Upper>().rankUpdate(-s2*r1.adjoint(),r2.adjoint()*s3,s1);
51 VERIFY_IS_APPROX(m2, (m1 + s1*(-s2*r1.adjoint())*(r2.adjoint()*s3).adjoint() + numext::conj(s1)*(r2.adjoint()*s3) * (-s2*r1.adjoint()).adjoint()).template triangularView<Upper>().toDenseMatrix());

Completed in 2580 milliseconds

1234567891011>>