HomeSort by relevance Sort by last modified time
    Searched refs:C3 (Results 1 - 25 of 173) sorted by null

1 2 3 4 5 6 7

  /toolchain/binutils/binutils-2.25/gold/testsuite/
dwp_test_1b.cc 29 C3 c3; variable
dwp_test.h 47 class C3
57 extern C3 c3;
dwp_test_2.cc 88 (*C3::f4())()
dwp_test_1.cc 102 C3::testcase1()
112 C3::testcase2()
126 C3::testcase3()
136 return &t12 == c3.f4();
  /external/clang/test/CodeGenCXX/
vtable-layout-extreme.cpp 21 class C3
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 --
microsoft-abi-non-virtual-base-ordering.cpp 7 struct C3 : C0, C1, C2 {} a;
10 // CHECK: %struct.C3 = type { %struct.C1, %struct.C2, %struct.C0 }
vtt-layout.cpp 36 class C3 : public X1 { int i; };
37 class D : public C1, public C2, public C3 { int i; };
55 class C3 : public X1 { int i; };
56 class D : public C1, public C2, public C3 { int i; };
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
deduction.cpp 33 template<int C1, char C3>
34 struct char_values<C1, 12, C3> {
44 template<unsigned char C1, unsigned char C3>
45 struct int_values<C1, 12, C3> {
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
Row.java 21 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
22 Freezable<Row<C0, C1, C2, C3, C4>>{
35 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) {
36 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
38 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) {
39 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
Row.java 17 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable,
18 Freezable<Row<C0, C1, C2, C3, C4>>{
31 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) {
32 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3);
34 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) {
35 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.class.spec/
p9.cpp 22 template<unsigned char C1, unsigned char C3>
23 struct int_values<C1, 12, C3> {
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/i386/
list-1.l 14 [ ]*9[ ]+0001 C3 ret
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
TimeUnit.java 22 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); }
    [all...]
  /external/clang/test/Modules/Inputs/
redecl-merge-left.h 34 @class C3;
35 void accept_a_C3(C3*);
36 @class C3;
  /bionic/libm/upstream-freebsd/lib/msun/src/
k_cosf.c 31 C3 = 0x199342e0ee5069.0p-68; /* 0.0000243904487962774090654 */
44 r = C2+z*C3;
k_cos.c 33 * |cos(x)-(1-.5*x +C1*x +C2*x +C3*x +C4*x +C5*x +C6*x )| <= 2
37 * 4. let r = C1*x +C2*x +C3*x +C4*x +C5*x +C6*x , then
63 C3 = 2.48015872894767294178e-05, /* 0x3EFA01A0, 0x19CB1590 */
75 r = z*(C1+z*(C2+z*C3)) + w*w*(C4+z*(C5+z*C6));
  /libcore/ojluni/src/main/java/java/util/concurrent/
TimeUnit.java 85 public long toSeconds(long d) { return d/(C3/C0); }
100 public long toSeconds(long d) { return d/(C3/C1); }
115 public long toSeconds(long d) { return d/(C3/C2); }
127 public long toNanos(long d) { return x(d, C3/C0, MAX/(C3/C0)); }
128 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); }
129 public long toMillis(long d) { return x(d, C3/C2, MAX/(C3/C2)); }
131 public long toMinutes(long d) { return d/(C4/C3); }
    [all...]
  /external/webrtc/webrtc/base/
sigslottester.h 103 template <class A1, class A2, class A3, class C1, class C2, class C3>
107 C1* capture1, C2* capture2, C3* capture3)
126 C3* capture3_;
131 template <class A1, class A2, class A3, class A4, class C1, class C2, class C3,
136 C1* capture1, C2* capture2, C3* capture3, C4* capture4)
157 C3* capture3_;
164 class C3, class C4, class C5>
168 C1* capture1, C2* capture2, C3* capture3, C4* capture4,
191 C3* capture3_;
  /bionic/libm/upstream-freebsd/lib/msun/ld128/
k_cosl.c 38 C3 = 0.00002480158730158730158730158600795304914210L,
56 r = z*(C1+z*(C2+z*(C3+z*(C4+z*(C5+z*(C6+z*(C7+
  /device/linaro/bootloader/edk2/Nt32Pkg/MetronomeDxe/
MetronomeDxe.inf 20 FILE_GUID = 154CAB4A-52B5-46CD-99C3-4368ABBACFFD
  /external/clang/test/Parser/
cxx-concept-declaration.cpp 14 A<void>::Boolean concept C3(!0);
  /prebuilts/go/darwin-x86/src/mime/
encodedword_test.go 22 {QEncoding, utf8, "François-Jérôme", "=?utf-8?q?Fran=C3=A7ois-J=C3=A9r=C3=B4me?="},
24 {QEncoding, iso88591, "La Seleção", "=?iso-8859-1?q?La_Sele=C3=A7=C3=A3o?="},
30 {QEncoding, utf8, strings.Repeat("é", 10), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?="},
31 {QEncoding, utf8, strings.Repeat("é", 11), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?= =?utf-8?q?=C3=A9?="},
81 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!", false},
82 {"=?UTF-8?Q?Fran=C3=A7ois-J=C3=A9r=C3=B4me?=", "François-Jérôme", false}
    [all...]
  /prebuilts/go/linux-x86/src/mime/
encodedword_test.go 22 {QEncoding, utf8, "François-Jérôme", "=?utf-8?q?Fran=C3=A7ois-J=C3=A9r=C3=B4me?="},
24 {QEncoding, iso88591, "La Seleção", "=?iso-8859-1?q?La_Sele=C3=A7=C3=A3o?="},
30 {QEncoding, utf8, strings.Repeat("é", 10), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?="},
31 {QEncoding, utf8, strings.Repeat("é", 11), "=?utf-8?q?" + strings.Repeat("=C3=A9", 10) + "?= =?utf-8?q?=C3=A9?="},
81 {"=?UTF-8?Q?=C2=A1Hola,_se=C3=B1or!?=", "¡Hola, señor!", false},
82 {"=?UTF-8?Q?Fran=C3=A7ois-J=C3=A9r=C3=B4me?=", "François-Jérôme", false}
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mmix/
greg1.s 7 C3 GREG D4
greg2.s 7 .greg C3,D4

Completed in 604 milliseconds

1 2 3 4 5 6 7