HomeSort by relevance Sort by last modified time
    Searched defs:r1 (Results 1 - 25 of 165) sorted by null

1 2 3 4 5 6 7

  /external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
p3.cpp 2 int& r1; // expected-error{{declaration of reference variable 'r1' requires an initializer}} variable
  /external/clang/test/Misc/
verify.c 10 struct s r1; // expected-error-re {{tentative definition has type 'struct s' that is never completed}} variable in typeref:struct:s
  /libcore/luni/src/test/java/libcore/java/util/
RandomTest.java 35 MyRandom r1 = new MyRandom(); local
36 r1.nextInt();
37 assertNotNull(r1.state);
  /external/stlport/test/unit/
reference_wrapper_test.cpp 37 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 = std::tr1::cref(j)
    [all...]
includes_test.cpp 43 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);
  /ndk/tests/device/test-gnustl-full/unit/
reference_wrapper_test.cpp 37 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 = std::tr1::cref(j)
    [all...]
includes_test.cpp 43 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);
  /ndk/tests/device/test-stlport/unit/
reference_wrapper_test.cpp 37 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 = std::tr1::cref(j)
    [all...]
includes_test.cpp 43 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/clang/test/CXX/dcl.decl/dcl.meaning/dcl.ref/
p6-0x.cpp 21 typedef LRI& r1; CHECK_EQUAL_TYPES(r1, int&); typedef
  /external/clang/test/Sema/
vector-cast.c 25 long long r1 = (long long)v1; local
  /external/opencv/cv/src/
_cvgeom.h 77 double r1; /* The ratio of the height of triangle to the base of the triangle */ member in struct:_CvTrianAttr
  /external/skia/tests/
SrcOverTest.cpp 50 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/v8/test/mjsunit/
array-concat.js 202 var r1 = [].concat(arr1, arr2); // [,2,1,3] variable
203 assertEquals([,2,1,3], r1);
  /external/valgrind/main/none/tests/x86/
incdec_alt.c 7 int r1,r2,r3,r4,r5,r6,r7,r8,a1,a2; variable
21 "\tmovl %eax," VG_SYM(r1) "\n"
58 r1=r2=r3=r4=r5=r6=r7=r8=0;
60 printf("0x%08x\n",r1);
  /external/clang/test/FixIt/
typo.c 29 Rectangle r1; // expected-error{{must use 'struct' tag to refer to type 'Rectangle'}} local
30 r1.top_left.x = 0;
33 rectangle *r2 = &r1; // expected-error{{ unknown type name 'rectangle'; did you mean 'Rectangle'?}}
  /external/llvm/unittests/VMCore/
InstructionsTest.cpp 31 const ReturnInst* r1 = ReturnInst::Create(C, One); local
32 EXPECT_EQ(1U, r1->getNumOperands());
33 User::const_op_iterator b(r1->op_begin());
34 EXPECT_NE(r1->op_end(), b);
36 EXPECT_EQ(One, r1->getOperand(0));
38 EXPECT_EQ(r1->op_end(), b);
42 delete r1;
  /external/openssl/crypto/rsa/
rsa_gen.c 87 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;
  /external/webkit/Source/JavaScriptCore/jit/
ExecutableAllocator.cpp 115 add r1, r1, r0 local
  /frameworks/base/media/libstagefright/codecs/m4v_h263/dec/src/
idct.cpp 131 int32 r0, r1, r2, r3, r4, r5, r6, r7, r8; /* butterfly nodes */ local
145 r1 = blk[B_SIZE * 4 + i] << 11;
158 if (!(r1 | r2 | r3 | r4 | r5 | r6 | r7))
192 r8 = r0 + r1;
193 r0 -= r1;
195 r1 = W6 * (r3 + r2);
196 r2 = (r1 - (W2 + W6) * r2);
197 r3 = (r1 + (W2 - W6) * r3);
199 r1 = r4 + r6;
218 tmpBLK32[0 + i] = (r7 + r1) >> 8
353 int32 r0, r1, r2, r3, r4, r5, r6, r7, r8; \/* butterfly nodes *\/ local
    [all...]
  /bionic/libm/src/
s_expm1.c 33 * we define R1(r*r) by
34 * r*(exp(r)+1)/(exp(r)-1) = 2+ r^2/6 * R1(r*r)
36 * R1(r**2) = 6/r *((exp(r)+1)/(exp(r)-1) - 2/r)
40 * a polynomial of degree 5 in r*r to approximate R1. The
43 * R1(z) ~ 1.0 + Q1*z + Q2*z**2 + Q3*z**3 + Q4*z**4 + Q5*z**5
52 * | 1.0+Q1*z+...+Q5*z - R1(z) | <= 2
58 * r r [ 3 - (R1 + R1*r/2) ]
60 * 2 2 [ 6 - r*(3 - R1*r/2) ]
69 * ({ ( r [ R1 - (3 - R1*r/2) ] ) } r
133 double y,hi,lo,c,t,e,hxs,hfx,r1; local
    [all...]
s_expm1f.c 41 float y,hi,lo,c,t,e,hxs,hfx,r1; local
90 r1 = one+hxs*(Q1+hxs*(Q2+hxs*(Q3+hxs*(Q4+hxs*Q5))));
91 t = (float)3.0-r1*hfx;
92 e = hxs*((r1-t)/((float)6.0 - x*t));
  /external/chromium/chrome/browser/autocomplete/
autocomplete_result_unittest.cc 116 AutocompleteResult r1; local
120 r1.Swap(&r2);
121 EXPECT_EQ(r1.end(), r1.default_match());
130 r1.AppendMatches(matches);
131 r1.SortAndCull(input);
132 EXPECT_EQ(r1.begin(), r1.default_match());
133 EXPECT_EQ("http://a/", r1.alternate_nav_url().spec());
134 r1.Swap(&r2)
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-template-template-parm.cpp 50 typedef R r1; typedef in struct:Comp
  /external/fdlibm/
s_expm1.c 29 * we define R1(r*r) by
30 * r*(ieee_exp(r)+1)/(ieee_exp(r)-1) = 2+ r^2/6 * R1(r*r)
32 * R1(r**2) = 6/r *((ieee_exp(r)+1)/(ieee_exp(r)-1) - 2/r)
36 * a polynomial of degree 5 in r*r to approximate R1. The
39 * R1(z) ~ 1.0 + Q1*z + Q2*z**2 + Q3*z**3 + Q4*z**4 + Q5*z**5
48 * | 1.0+Q1*z+...+Q5*z - R1(z) | <= 2
54 * r r [ 3 - (R1 + R1*r/2) ]
56 * 2 2 [ 6 - r*(3 - R1*r/2) ]
65 * ({ ( r [ R1 - (3 - R1*r/2) ] ) } r
136 double y,hi,lo,c,t,e,hxs,hfx,r1; local
    [all...]

Completed in 303 milliseconds

1 2 3 4 5 6 7