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

123

/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; };
/external/annotation-tools/annotation-file-utilities/tests/
H A DExtImpl.java14 class C3 { class in class:ExtImpl
22 annotator.tests.ExtImpl.C3.Iface3 getI1() {
29 * Lannotator.tests.ExtImpl.C3.Iface3;
31 annotator.tests.ExtImpl.C3.Iface3 getI2() {
H A DConstructorReceivers.java18 class C3 { class in class:ConstructorReceivers
19 public C3(ConstructorReceivers ConstructorReceivers.this) {} method in class:ConstructorReceivers.C3
/external/autotest/client/site_tests/video_WebRtcCamera/
H A Dssim.js66 var C3 = C2 / 2; variable
82 var structure = (sigmaXy + C3) / (sigmaX * sigmaY + C3);
/external/autotest/client/site_tests/video_WebRtcPeerConnectionWithCamera/
H A Dssim.js66 var C3 = C2 / 2; variable
82 var structure = (sigmaXy + C3) / (sigmaX * sigmaY + 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/concepts-ts/dcl.dcl/dcl.spec/dcl.spec.concept/
H A Dp1.cpp9 template<typename T> concept bool C3() { return (throw 0, true); } function
10 static_assert(noexcept(C3<int>()), "function concept should be treated as if noexcept(true) specified");
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/
H A Dp2-0x.cpp94 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.cpp79 template<typename...T> class C3 { class in namespace:ClassNameRedecl
H A Dclass.cpp101 struct C3 { struct
107 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.java22 public long toSeconds(long d) { return d/(C3/C0); }
33 public long toSeconds(long d) { return d/(C3/C1); }
44 public long toSeconds(long d) { return d/(C3/C2); }
52 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
53 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
54 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
56 public long toMinutes(long d) { return d/(C4/C3); }
100 static final long C3 = C2 * 1000L; field in class:TimeUnit
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/engines/
H A DAESEngine.java416 private int C0, C1, C2, C3; field in class:AESEngine
532 C3 = (bytes[index++] & 0xff);
533 C3 |= (bytes[index++] & 0xff) << 8;
534 C3 |= (bytes[index++] & 0xff) << 16;
535 C3 |= bytes[index++] << 24;
559 bytes[index++] = (byte)C3;
560 bytes[index++] = (byte)(C3 >> 8);
561 bytes[index++] = (byte)(C3 >> 16);
562 bytes[index++] = (byte)(C3 >> 24);
572 int r = 1, r0, r1, r2, r3 = this.C3
[all...]
H A DAESFastEngine.java745 private int C0, C1, C2, C3; field in class:AESFastEngine
835 this.C3 = Pack.littleEndianToInt(bytes, off + 12);
843 Pack.intToLittleEndian(this.C3, bytes, off + 12);
859 int r = 1, r0, r1, r2, r3 = this.C3 ^ KW[0][3];
929 this.C3 = i0 ^ i1 << 8 ^ i2 << 16 ^ i3 << 24 ^ KW[r][3];
938 int r = ROUNDS - 1, r0, r1, r2, r3 = this.C3 ^ KW[ROUNDS][3];
1008 this.C3 = i0 ^ i1 << 8 ^ i2 << 16 ^ i3 << 24 ^ KW[0][3];
/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:
/external/llvm/unittests/Analysis/
H A DLazyCallGraphTest.cpp148 LazyCallGraph::Node &C3 = (I++)->getNode(CG); local
149 EXPECT_EQ("c3", C3.getFunction().getName());
196 EXPECT_EQ(C3.end(), std::next(C3.begin()));
197 EXPECT_EQ("c1", C3.begin()->getFunction().getName());
612 LazyCallGraph::Node &C3 = *CG.lookup(lookupFunction(*M, "c3")); local
625 ASSERT_EQ(&CRC, CG.lookupRefSCC(C3));
663 EXPECT_EQ(&CRC, CG.lookupRefSCC(C3));
698 LazyCallGraph::Node &C3 = *CG.lookup(lookupFunction(*M, "c3")); local
704 ASSERT_EQ(&CRC, CG.lookupRefSCC(C3));
1125 LazyCallGraph::Node &C3 = *CG.lookup(lookupFunction(*M, "c3")); local
[all...]
/external/pdfium/core/fdrm/crypto/
H A Dfx_crypt_aes.cpp447 E3[block[(i + C3) % Nb] & 0xFF]))
452 (Sbox[(block[(i + C3) % Nb]) & 0xFF]))
456 const int C1 = 1, C2 = 2, C3 = 3, Nb = 4; local
484 const int C1 = 1, C2 = 2, C3 = 3, Nb = 6; local
520 const int C1 = 1, C2 = 3, C3 = 4, Nb = 8; local
567 D3[block[(i + C3) % Nb] & 0xFF]))
572 (Sboxinv[(block[(i + C3) % Nb]) & 0xFF]))
576 const int C1 = 4 - 1, C2 = 4 - 2, C3 = 4 - 3, Nb = 4; local
604 const int C1 = 6 - 1, C2 = 6 - 2, C3 = 6 - 3, Nb = 6; local
640 const int C1 = 8 - 1, C2 = 8 - 3, C3 local
[all...]
/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/python/cpython3/Lib/test/
H A Dtest_range.py438 class C3(int): class in function:RangeTest.test_types
440 self.assertIn(C3(11), range(10))
441 self.assertIn(C3(11), list(range(10)))

Completed in 562 milliseconds

123