Searched defs:rr (Results 1 - 25 of 123) sorted by relevance

12345

/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp1.cpp9 int &rr=r; local
/external/clang/test/CodeGen/
H A D2002-09-18-UnionProblem.c14 DWunion rr; local
18 rr.s.high = n1;
22 rr.s.high = bm;
25 return rr.ll;
/external/clang/test/PCH/
H A Dcxx-reference.h9 char &&rr = 'c'; variable
/external/dropbear/libtommath/
H A Dbn_mp_div_2.c33 register mp_digit r, rr, *tmpa, *tmpb; local
45 rr = *tmpa & 1;
51 r = rr;
H A Dbn_mp_mul_2.c34 register mp_digit r, rr, *tmpa, *tmpb; local
49 rr = *tmpa >> ((mp_digit)(DIGIT_BIT - 1));
57 r = rr;
H A Dbn_mp_div_2d.c21 mp_digit D, r, rr; local
76 rr = *tmpc & mask;
83 r = rr;
H A Dbn_mp_mul_2d.c47 register mp_digit *tmpc, shift, mask, r, rr; local
63 rr = (*tmpc >> shift) & mask;
70 r = rr;
/external/chromium_org/third_party/re2/re2/testing/
H A Ddump.cc137 RuneRange rr = *it; local
139 if (rr.lo == rr.hi)
140 s->append(StringPrintf("%#x", rr.lo));
142 s->append(StringPrintf("%#x-%#x", rr.lo, rr.hi));
/external/chromium_org/third_party/skia/src/core/
H A DSkScan.cpp28 SkIRect rr = r; local
29 if (rr.intersect(clipBounds)) {
30 blitrect(blitter, rr);
35 const SkIRect& rr = cliper.rect(); local
38 blitrect(blitter, rr);
/external/regex-re2/re2/testing/
H A Ddump.cc137 RuneRange rr = *it; local
139 if (rr.lo == rr.hi)
140 s->append(StringPrintf("%#x", rr.lo));
142 s->append(StringPrintf("%#x-%#x", rr.lo, rr.hi));
/external/skia/src/core/
H A DSkScan.cpp28 SkIRect rr = r; local
29 if (rr.intersect(clipBounds)) {
30 blitrect(blitter, rr);
35 const SkIRect& rr = cliper.rect(); local
38 blitrect(blitter, rr);
/external/speex/libspeex/
H A Dlpc.c93 spx_word32_t rr = NEG32(SHL32(EXTEND32(ac[i + 1]),13)); local
95 rr = SUB32(rr,MULT16_16(lpc[j],ac[i - j]));
97 r = DIV32_16(rr+PSHR32(error,1),ADD16(error,8));
99 r = rr/(error+.003*ac[0]);
/external/chromium_org/ui/gfx/
H A Drect_f.cc55 float rr = std::max(p1.x(), p2.x()); local
57 return RectF(rx, ry, rr - rx, rb - ry);
H A Drect.cc105 int rr = std::max(p1.x(), p2.x()); local
107 return Rect(rx, ry, rr - rx, rb - ry);
/external/chromium_org/third_party/openssl/openssl/crypto/bn/
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
84 rr=(a != r) ? r : BN_CTX_get(ctx);
86 if (!rr || !tmp) goto err;
89 if (bn_wexpand(rr,max) == NULL) goto err;
95 bn_sqr_normal(rr->d,a->d,4,t);
97 bn_sqr_comba4(rr->d,a->d);
104 bn_sqr_normal(rr->d,a->d,8,t);
106 bn_sqr_comba8(rr->d,a->d);
115 bn_sqr_normal(rr->d,a->d,al,t);
127 bn_sqr_recursive(rr
[all...]
H A Dexp.c16 BIGNUM a,b,c,r,rr,t,l; local
/external/chromium_org/third_party/opus/src/silk/float/
H A Dfind_LTP_FLP.c52 silk_float Rr[ LTP_ORDER ], rr[ MAX_NB_SUBFR ]; local
64 rr[ k ] = ( silk_float )silk_energy_FLP( r_ptr, subfr_length );
65 regu = 1.0f + rr[ k ] +
69 silk_regularize_correlations_FLP( WLTP_ptr, &rr[ k ], regu, LTP_ORDER );
73 nrg[ k ] = silk_residual_energy_covar_FLP( b_ptr, WLTP_ptr, Rr, rr[ k ], LTP_ORDER );
89 LPC_res_nrg += rr[ k ] * Wght[ k ];
/external/chromium_org/third_party/skia/src/utils/
H A DSkCanvasStack.cpp86 bool SkCanvasStack::clipRRect(const SkRRect& rr, SkRegion::Op op, bool aa) { argument
87 bool result = this->INHERITED::clipRRect(rr, op, aa);
/external/openssl/crypto/bn/
H A Dbn_sqr.c69 BIGNUM *tmp,*rr; local
84 rr=(a != r) ? r : BN_CTX_get(ctx);
86 if (!rr || !tmp) goto err;
89 if (bn_wexpand(rr,max) == NULL) goto err;
95 bn_sqr_normal(rr->d,a->d,4,t);
97 bn_sqr_comba4(rr->d,a->d);
104 bn_sqr_normal(rr->d,a->d,8,t);
106 bn_sqr_comba8(rr->d,a->d);
115 bn_sqr_normal(rr->d,a->d,al,t);
127 bn_sqr_recursive(rr
[all...]
H A Dexp.c16 BIGNUM a,b,c,r,rr,t,l; local
/external/skia/gm/
H A Dnested.cpp49 SkRRect rr; local
50 rr.setRectXY(rect, 5, 5);
51 path->addRRect(rr, dir);
H A Drrect.cpp117 SkRRect rr; local
119 proc(rrect, d, d, &rr);
120 draw_rrect_color(canvas, rr);
/external/skia/src/utils/
H A DSkCanvasStack.cpp86 bool SkCanvasStack::clipRRect(const SkRRect& rr, SkRegion::Op op, bool aa) { argument
87 bool result = this->INHERITED::clipRRect(rr, op, aa);
/external/chromium_org/mojo/public/tests/
H A Dbindings_type_conversion_unittest.cc138 RedmondRect rr = rect.To<RedmondRect>(); local
139 EXPECT_EQ(10, rr.left);
140 EXPECT_EQ(20, rr.top);
141 EXPECT_EQ(60, rr.right);
142 EXPECT_EQ(65, rr.bottom);
144 test_structs::Rect rect2(rr);
167 RedmondRect rr = kBase; local
168 rr.left += static_cast<int32_t>(i);
169 rr.top += static_cast<int32_t>(i);
170 rects_builder[i] = test_structs::Rect(rr);
[all...]
/external/chromium_org/ppapi/cpp/
H A Drect.cc55 int32_t rr = std::min(right(), rect.right()); local
58 if (rx >= rr || ry >= rb)
59 rx = ry = rr = rb = 0; // non-intersecting
61 return Rect(rx, ry, rr - rx, rb - ry);
73 int32_t rr = std::max(right(), rect.right()); local
76 return Rect(rx, ry, rr - rx, rb - ry);
88 int32_t rr = right(); local
96 rr = rect.x();
106 return Rect(rx, ry, rr - rx, rb - ry);

Completed in 4778 milliseconds

12345