Searched defs:r1 (Results 1 - 25 of 77) sorted by relevance

1234

/external/stlport/test/unit/
H A Dreference_wrapper_test.cpp37 rr_type r1 = std::tr1::ref(i); local
39 CPPUNIT_CHECK( r1.get() == 1 );
41 r1 = std::tr1::ref(j);
43 CPPUNIT_CHECK( r1.get() == 2 );
47 CPPUNIT_CHECK( r1.get() == 2 );
51 CPPUNIT_CHECK( r1.get() == 4 );
53 r1.get() = 5;
68 crr_type r1 = std::tr1::cref(i); local
70 CPPUNIT_CHECK( r1.get() == 1 );
72 r1
[all...]
H A Dincludes_test.cpp43 bool r1=includes(numbers1, numbers1 + 5, numbers3, numbers3 + 2); local
44 CPPUNIT_ASSERT(!r1);
55 bool r1=includes(v1.begin(), v1.end(), v2.begin(), v2.end()); local
56 CPPUNIT_ASSERT(!r1);
80 bool r1 = includes(v1.begin(), v1.end(), v2.begin(), v2.end(), compare_strings); local
81 CPPUNIT_ASSERT(!r1);
/external/webkit/WebCore/svg/
H A DSVGPathSegArc.cpp28 SVGPathSegArcAbs::SVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
29 : SVGPathSegArc(x, y, r1, r2, angle, largeArcFlag, sweepFlag)
33 SVGPathSegArcRel::SVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
34 : SVGPathSegArc(x, y, r1, r2, angle, largeArcFlag, sweepFlag)
H A DSVGPathSegArc.h32 SVGPathSegArc(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
33 : m_x(x), m_y(y), m_r1(r1), m_r2(r2), m_angle(angle), m_largeArcFlag(largeArcFlag), m_sweepFlag(sweepFlag) {}
43 void setR1(float r1) { m_r1 = r1; } argument
44 float r1() const { return m_r1; } function in class:WebCore::SVGPathSegArc
71 static PassRefPtr<SVGPathSegArcAbs> create(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
73 return adoptRef(new SVGPathSegArcAbs(x, y, r1, r2, angle, largeArcFlag, sweepFlag));
80 SVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag);
85 static PassRefPtr<SVGPathSegArcRel> create(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
87 return adoptRef(new SVGPathSegArcRel(x, y, r1, r
[all...]
H A DSVGPathElement.cpp120 PassRefPtr<SVGPathSegArcAbs> SVGPathElement::createSVGPathSegArcAbs(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
122 return SVGPathSegArcAbs::create(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
125 PassRefPtr<SVGPathSegArcRel> SVGPathElement::createSVGPathSegArcRel(float x, float y, float r1, float r2, float angle, bool largeArcFlag, bool sweepFlag) argument
127 return SVGPathSegArcRel::create(x, y, r1, r2, angle, largeArcFlag, sweepFlag);
/external/webkit/WebCore/html/canvas/
H A DCanvasGradient.cpp41 CanvasGradient::CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
42 : m_gradient(Gradient::create(p0, r0, p1, r1))
H A DCanvasGradient.h46 static PassRefPtr<CanvasGradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
48 return adoptRef(new CanvasGradient(p0, r0, p1, r1));
63 CanvasGradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1);
/external/skia/tests/
H A DSrcOverTest.cpp50 unsigned r1 = test_srcover1(dst, i); local
57 REPORTER_ASSERT(reporter, r1 <= 255 && r1 >= max);
61 // this shows where r1 (faster) differs from r2 (more exact)
62 if (r1 != r2) {
63 SkDebugf("--- dst=%d i=%d r1=%d r2=%d exact=%g\n",
64 dst, i, r1, r2, i + dst - dst*i/255.0f);
/external/fdlibm/
H A Ds_expm1.c136 double y,hi,lo,c,t,e,hxs,hfx,r1; local
187 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
188 t = 3.0-r1*hfx;
189 e = hxs*((r1-t)/(6.0 - x*t));
/external/openssl/crypto/rsa/
H A Drsa_gen.c87 BIGNUM *r0=NULL,*r1=NULL,*r2=NULL,*r3=NULL,*tmp; local
97 r1 = BN_CTX_get(ctx);
123 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
124 if (BN_is_one(r1)) break;
148 if (!BN_gcd(r1,r2,rsa->e,ctx)) goto err;
149 if (BN_is_one(r1))
167 if (!BN_sub(r1,rsa->p,BN_value_one())) goto err; /* p-1 */
169 if (!BN_mul(r0,r1,r2,ctx)) goto err; /* (p-1)(q-1) */
189 if (!BN_mod(rsa->dmp1,d,r1,ctx)) goto err;
H A Drsa_eay.c717 BIGNUM *r1,*m1,*vrfy; local
723 r1 = BN_CTX_get(ctx);
768 if (!BN_mod(r1,c,rsa->q,ctx)) goto err;
772 if (!BN_mod(r1,I,rsa->q,ctx)) goto err;
775 /* compute r1^dmq1 mod q */
783 if (!rsa->meth->bn_mod_exp(m1,r1,dmq1,rsa->q,ctx,
791 if (!BN_mod(r1,c,rsa->p,ctx)) goto err;
795 if (!BN_mod(r1,I,rsa->p,ctx)) goto err;
798 /* compute r1^dmp1 mod p */
806 if (!rsa->meth->bn_mod_exp(r0,r1,dmp
[all...]
H A Drsa_lib.c349 BIGNUM *ret = NULL, *r0, *r1, *r2; local
356 r1 = BN_CTX_get(ctx);
361 if (!BN_sub(r1, p, BN_value_one())) goto err;
363 if (!BN_mul(r0, r1, r2, ctx)) goto err;
/external/webkit/WebCore/platform/graphics/
H A DGradient.cpp49 Gradient::Gradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
54 , m_r1(r1)
H A DGradient.h79 static PassRefPtr<Gradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1) argument
81 return adoptRef(new Gradient(p0, r0, p1, r1));
93 float r1() const { return m_r1; } function in class:WebCore::Gradient
132 Gradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1);
/external/qemu/android/skin/
H A Drect.c143 skin_rect_contains_rect( SkinRect *r1, SkinRect *r2 ) argument
147 skin_box_from_rect( &a, r1 );
163 skin_rect_intersect( SkinRect* result, SkinRect* r1, SkinRect* r2 ) argument
167 skin_box_from_rect( &a, r1 );
185 skin_rect_equals( SkinRect* r1, SkinRect* r2 ) argument
187 return (r1->pos.x == r2->pos.x && r1->pos.y == r2->pos.y &&
188 r1->size.w == r2->size.w && r2->size.h == r2->size.h);
/external/bison/src/
H A Doutput.c201 | Prepare the muscles related to the rules: rhs, prhs, r1, r2, |
213 symbol_number *r1 = xnmalloc (nrules, sizeof *r1); local
227 r1[r] = rules[r].lhs->number;
244 muscle_insert_symbol_number_table ("r1", r1, 0, 0, nrules);
255 free (r1);
/external/bluetooth/bluez/sbc/
H A Dsbctester.c84 int i, j, r1, r2, verdict; local
106 r1 = sf_read_short(sndref, refsample, infostst->channels);
107 if (r1 != infostst->channels) {
109 "(r1=%d, channels=%d)",
110 sf_strerror(sndref), r1,
181 short r1, r2; local
198 r1 = sf_read_short(sndref, refsample, infostst->channels);
200 if (r1 != infostst->channels) {
202 "(r1=%d, channels=%d)",
203 sf_strerror(sndref), r1,
[all...]
/external/bluetooth/bluez/src/
H A Dsdpd-database.c58 int record_sort(const void *r1, const void *r2) argument
60 const sdp_record_t *rec1 = (const sdp_record_t *) r1;
71 static int access_sort(const void *r1, const void *r2) argument
73 const sdp_access_t *rec1 = (const sdp_access_t *) r1;
/external/chromium/third_party/icu/source/i18n/
H A Drbt_set.cpp365 TransliterationRule* r1 = rules[j]; local
368 if (r1->masks(*r2)) {
374 //| errors.append("Rule " + r1 + " masks " + r2);
376 maskingError(*r1, *r2, parseError);
/external/icu4c/i18n/
H A Drbt_set.cpp365 TransliterationRule* r1 = rules[j]; local
368 if (r1->masks(*r2)) {
374 //| errors.append("Rule " + r1 + " masks " + r2);
376 maskingError(*r1, *r2, parseError);
/external/openssl/crypto/aes/
H A Daes_x86core.c693 u32 r0, r1, r2; local
697 r1 = r0 & 0x80808080;
699 ((r1 - (r1 >> 7)) & 0x1b1b1b1b);
759 u32 r0, r1, r2; local
763 r1 = r0 & 0x80808080;
765 ((r1 - (r1 >> 7)) & 0x1b1b1b1b);
/external/openssl/crypto/bn/
H A Dbn_gf2m.c131 static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a, const BN_ULONG b) argument
159 *r1 = h; *r0 = l;
163 static void bn_GF2m_mul_1x1(BN_ULONG *r1, BN_ULONG *r0, const BN_ULONG a, const BN_ULONG b) argument
199 *r1 = h; *r0 = l;
/external/quake/quake/src/QW/client/
H A Dgl_vidandroid.c63 int r1,g1,b1; local
116 r1 = (int)r - (int)pal[0];
119 dist = sqrt(((r1*r1)+(g1*g1)+(b1*b1)));
/external/v8/src/ia32/
H A Dic-ia32.cc56 Register r1,
66 // r1 - used for the index into the property dictionary
121 __ mov(r1, FieldOperand(name, String::kHashFieldOffset));
122 __ shr(r1, String::kHashShift);
124 __ add(Operand(r1), Immediate(StringDictionary::GetProbeOffset(i)));
126 __ and_(r1, Operand(r2));
130 __ lea(r1, Operand(r1, r1, times_2, 0)); // r1
51 GenerateDictionaryLoad(MacroAssembler* masm, Label* miss_label, Register receiver, Register name, Register r0, Register r1, Register r2, DictionaryCheck check_dictionary) argument
[all...]
/external/chromium/third_party/icu/source/common/
H A Dpropname.cpp87 int32_t rc, r1, r2; local
90 r1=getASCIIPropertyNameChar(name1);
94 if(((r1|r2)&0xff)==0) {
99 if(r1!=r2) {
100 rc=(r1&0xff)-(r2&0xff);
106 name1+=r1>>8;
113 int32_t rc, r1, r2; local
116 r1=getEBCDICPropertyNameChar(name1);
120 if(((r1|r2)&0xff)==0) {
125 if(r1!
[all...]

Completed in 220 milliseconds

1234