Searched defs:C3 (Results 1 - 25 of 40) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-618.js59 function C3() { class
62 var c3 = new C3();
68 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
69 var c3 = new C3();
/external/clang/test/CodeGenCXX/
H A Dmicrosoft-abi-non-virtual-base-ordering.cpp7 struct C3 : C0, C1, C2 {} a; struct in inherits:C0,C1,C2
10 // CHECK: %struct.C3 = type { %struct.C1, %struct.C2, %struct.C0 }
H A Dvtable-layout-extreme.cpp21 class C3 class in namespace:Test1
33 , virtual public C3
43 , virtual public C3
48 : virtual public C3
59 , virtual public C3
69 , public C3
128 // CHECK-NEXT: -- (Test1::C3, 120) vtable address --
170 // CHECK-NEXT: -- (Test1::C3, 240) vtable address --
H A Dvtt-layout.cpp36 class C3 : public X1 { int i; }; class in namespace:Test3
37 class D : public C1, public C2, public C3 { int i; };
55 class C3 : public X1 { int i; }; class in namespace:Test4
56 class D : public C1, public C2, public C3 { int i; };
H A Ddebug-info-use-after-free.cpp257 C3: class in class:__anon18832::C1
272 HHH (C3::GGG &);
289 C1::C3 * >
311 scoped_ptr < C1::C3 > context;
/external/chromium_org/v8/test/mjsunit/
H A Dsetter-on-constructor-prototype.js62 function C3() { class
65 C3.prototype = { };
66 C3.prototype.__defineSetter__('x', function(value) { this.y = 23; });
68 %ToFastProperties(C3.prototype);
72 var c3 = new C3();
/external/fdlibm/
H A Dk_cos.c30 * |ieee_cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
34 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
59 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */ variable
78 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*C6)))));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp96 template<typename...T> class C3 { class in namespace:ClassNameRedecl
/external/clang/test/Layout/
H A Dms-x86-empty-nonvirtual-bases.cpp17 struct C3 { int a; C3() : a(0xf00000C3) {printf("C3 : %p\n", this);} }; function in struct:C3
H A Dms-x86-empty-virtual-base.cpp17 struct C3 { int a; C3() : a(0xf00000C3) {printf("C3 : %3d\n", ((int)(__SIZE_TYPE__)this)&0xfff);} }; function in struct:C3
/external/clang/test/SemaCXX/
H A Dalias-template.cpp81 template<typename...T> class C3 { class in namespace:ClassNameRedecl
H A Dclass.cpp90 struct C3 { struct
96 const C3 c3 = { 1, 2 };
/external/clang/test/SemaTemplate/
H A Dclass-template-decl.cpp67 template<typename T> class M::C3 { }; // expected-error{{out-of-line definition of 'C3' does not match any declaration in namespace 'M'}} class in class:M
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DTimeUnit.java18 public long toSeconds(long d) { return d/(C3/C0); }
29 public long toSeconds(long d) { return d/(C3/C1); }
40 public long toSeconds(long d) { return d/(C3/C2); }
48 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
49 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
50 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
52 public long toMinutes(long d) { return d/(C4/C3); }
96 static final long C3 = C2 * 1000L; field in class:TimeUnit
[all...]
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp147 LazyCallGraph::Node &C3 = *I++; local
148 EXPECT_EQ("c3", C3.getFunction().getName());
195 EXPECT_EQ(C3.end(), std::next(C3.begin()));
196 EXPECT_EQ("c1", C3.begin()->getFunction().getName());
461 LazyCallGraph::Node &C3 = *CG.lookup(lookupFunction(*M, "c3")); local
474 ASSERT_EQ(&CC, CG.lookupSCC(C3));
505 EXPECT_EQ(&CC, CG.lookupSCC(C3));
542 LazyCallGraph::Node &C3 = *CG.lookup(lookupFunction(*M, "c3")); local
548 ASSERT_EQ(&CC, CG.lookupSCC(C3));
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java334 private int C0, C1, C2, C3; field in class:AESEngine
440 C3 = (bytes[index++] & 0xff);
441 C3 |= (bytes[index++] & 0xff) << 8;
442 C3 |= (bytes[index++] & 0xff) << 16;
443 C3 |= bytes[index++] << 24;
467 bytes[index++] = (byte)C3;
468 bytes[index++] = (byte)(C3 >> 8);
469 bytes[index++] = (byte)(C3 >> 16);
470 bytes[index++] = (byte)(C3 >> 24);
481 C3
[all...]
H A DAESFastEngine.java665 private int C0, C1, C2, C3; field in class:AESFastEngine
771 C3 = (bytes[index++] & 0xff);
772 C3 |= (bytes[index++] & 0xff) << 8;
773 C3 |= (bytes[index++] & 0xff) << 16;
774 C3 |= bytes[index++] << 24;
798 bytes[index++] = (byte)C3;
799 bytes[index++] = (byte)(C3 >> 8);
800 bytes[index++] = (byte)(C3 >> 16);
801 bytes[index++] = (byte)(C3 >> 24);
811 C3
[all...]
/external/chromium_org/third_party/speex/libspeex/
H A Dmath_approx.h134 #define C3 4215*/
140 #define C3 4204 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
311 #define C3 0.0414877472f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp46 constexpr class C3 {} c3 = C3(); class
/external/clang/test/CXX/special/class.dtor/
H A Dp5-0x.cpp83 struct C3 : virtual DeletedDtor { C3(); } c3; // expected-error {{deleted function}} expected-note {{base class 'DeletedDtor' has a deleted destructor}} struct in inherits:DeletedDtor
/external/clang/test/Sema/
H A Dreturn.c260 enum Cases { C1, C2, C3, C4 }; enumerator in enum:Cases
266 case C3: return 4;
H A Dwarn-unreachable.c104 enum Cases { C1, C2, C3 }; enumerator in enum:Cases
109 case C3:
H A Dwarn-duplicate-enum.c18 enum C { C1, C2 = -1, C3 }; // expected-warning{{element C1 has been implicitly assigned 0 which another element has been assigned}} \ enumerator in enum:C
19 // expected-note {{element C3 also has value 0}}
/external/ppp/pppd/
H A Dmd4.c50 #define C3 015666365641 /* round 3 constant = sqrt(3) in octal */ macro
51 /* C2 and C3 are from Knuth, The Art of Programming, Volume 2
80 #define hh(A,B,C,D,i,s) A = rot((A + h(B,C,D) + X[i] + C3),s)
/external/speex/libspeex/
H A Dmath_approx.h134 #define C3 4215*/
140 #define C3 4204 macro
148 rt = ADD16(C0, MULT16_16_Q14(x, ADD16(C1, MULT16_16_Q14(x, ADD16(C2, MULT16_16_Q14(x, (C3)))))));
311 #define C3 0.0414877472f macro
321 return C1 + x*(C2+x*(C3+C4*x));
325 return NEG16(C1 + x*(C2+x*(C3+C4*x)));

Completed in 6379 milliseconds

12