/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Row.java | 19 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 20 Freezable<Row<C0, C1, C2, C3, C4>>{ 27 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { in of() 28 return new R2<C0,C1>(p0,p1); in of() 30 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 31 return new R3<C0,C1,C2>(p0,p1,p2); in of() 33 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { in of() 34 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3); in of() 36 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 37 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4); in of() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Row.java | 15 public class Row<C0, C1, C2, C3, C4> implements java.lang.Comparable, Cloneable, 16 Freezable<Row<C0, C1, C2, C3, C4>>{ 23 public static <C0, C1> R2<C0,C1> of(C0 p0, C1 p1) { in of() 24 return new R2<C0,C1>(p0,p1); in of() 26 public static <C0, C1, C2> R3<C0,C1,C2> of(C0 p0, C1 p1, C2 p2) { in of() 27 return new R3<C0,C1,C2>(p0,p1,p2); in of() 29 public static <C0, C1, C2, C3> R4<C0,C1,C2,C3> of(C0 p0, C1 p1, C2 p2, C3 p3) { in of() 30 return new R4<C0,C1,C2,C3>(p0,p1,p2,p3); in of() 32 public static <C0, C1, C2, C3, C4> R5<C0,C1,C2,C3,C4> of(C0 p0, C1 p1, C2 p2, C3 p3, C4 p4) { in of() 33 return new R5<C0,C1,C2,C3,C4>(p0,p1,p2,p3,p4); in of() [all …]
|
/external/mesa3d/src/gallium/drivers/nv50/ |
D | nv50_formats.c | 160 C4A(B8G8R8A8_UNORM, BGRA8_UNORM, C2, C1, C0, C3, UNORM, 8_8_8_8, TDV, 1), 161 F3A(B8G8R8X8_UNORM, BGRX8_UNORM, C2, C1, C0, xx, UNORM, 8_8_8_8, TD), 162 C4A(B8G8R8A8_SRGB, BGRA8_SRGB, C2, C1, C0, C3, UNORM, 8_8_8_8, TD, 1), 163 F3A(B8G8R8X8_SRGB, BGRX8_SRGB, C2, C1, C0, xx, UNORM, 8_8_8_8, TD), 164 C4A(R8G8B8A8_UNORM, RGBA8_UNORM, C0, C1, C2, C3, UNORM, 8_8_8_8, TBV, 0), 165 F3A(R8G8B8X8_UNORM, RGBX8_UNORM, C0, C1, C2, xx, UNORM, 8_8_8_8, TB), 166 C4A(R8G8B8A8_SRGB, RGBA8_SRGB, C0, C1, C2, C3, UNORM, 8_8_8_8, TB, 0), 172 ZSB(X24S8_UINT, NONE, C1, C1, C1, xx, UNORM, Z24_S8, T), 173 SZB(S8_UINT_Z24_UNORM, S8_Z24_UNORM, C1, C1, C1, xx, UNORM, S8_Z24, TZ), 177 ZSB(X32_S8X24_UINT, NONE, C1, C1, C1, xx, FLOAT, Z32_S8_X24, T), [all …]
|
/external/libcxxabi/test/ |
D | catch_class_03.pass.cpp | 31 struct C1 struct 36 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1() argument 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1() function 38 ~C1() {count--;} in ~C1() argument 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), id_(id) {count++;} in A() 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), id_(a.id_) {count++;} in A() 70 assert(C1::count == 0); in f1() 75 assert(C1::count == 1); in f1() [all …]
|
D | catch_class_04.pass.cpp | 31 struct C1 struct 36 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1() argument 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1() argument 38 ~C1() {count--;} in ~C1() argument 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} in A() 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} in A() 70 assert(C1::count == 0); in f1() 75 assert(C1::count == 1); in f1() [all …]
|
D | catch_ptr.pass.cpp | 31 struct C1 struct 36 explicit C1(int id) : B(id-2), id_(id) {count++;} in C1() function 37 C1(const C1& a) : B(a.id_-2), id_(a.id_) {count++;} in C1() function 38 ~C1() {count--;} in ~C1() argument 41 int C1::count = 0; 56 : C1, C2 60 explicit A(int id) : C1(id-1), C2(id-2), B(id+3), id_(id) {count++;} in A() 61 A(const A& a) : C1(a.id_-1), C2(a.id_-2), B(a.id_+3), id_(a.id_) {count++;} in A() 85 assert(static_cast<const C1*>(a)->id_ == 4); in f2() 90 catch (const C1*) in f2() [all …]
|
/external/llvm/test/Transforms/InstCombine/ |
D | apint-or.ll | 14 ;; If we have: ((V + N) & C1) | (V & C2) 15 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 17 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943 20 %B = and i39 %A, %C1 34 %C1 = or i43 %NotA, %NotB 35 ret i43 %C1 37 ; CHECK-NEXT: %C1.demorgan = and i43 %A, %B 38 ; CHECK-NEXT: %C1 = xor i43 %C1.demorgan, -1 39 ; CHECK-NEXT: ret i43 %C1 53 ;; If we have: ((V + N) & C1) | (V & C2) [all …]
|
D | apint-xor1.ll | 8 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0 11 %C1 = xor i47 %A1, %B1 12 ret i47 %C1 46 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2 48 %C1 = xor i47 %B1, 703687463 49 ret i47 %C1
|
D | apint-xor2.ll | 9 ;; (A & C1)^(B & C2) -> (A & C1)|(B & C2) iff C1&C2 == 0 12 %C1 = xor i447 %A1, %B1 13 ret i447 %C1 47 ;; (A | C1) ^ C2 -> (A | C1) & ~C2 iff (C1&C2) == C2 49 %C1 = xor i1023 %B1, 703687463 50 ret i1023 %C1
|
D | apint-and2.ll | 17 %C1 = and i477 %NotA, %NotB 18 ret i477 %C1 25 %C1 = and i129 %NotA, %NotB 26 ret i129 %C1 33 %C1 = and i65 %NotA, %NotB 34 ret i65 %C1 41 %C1 = and i66 %NotA, %NotB 42 ret i66 %C1 80 %C1 = and i1024 %X, 255 81 ret i1024 %C1
|
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/ |
D | TimeUnit.java | 20 public long toMicros(long d) { return d/(C1/C0); } in toMicros() 30 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos() 32 public long toMillis(long d) { return d/(C2/C1); } in toMillis() 33 public long toSeconds(long d) { return d/(C3/C1); } in toSeconds() 34 public long toMinutes(long d) { return d/(C4/C1); } in toMinutes() 35 public long toHours(long d) { return d/(C5/C1); } in toHours() 36 public long toDays(long d) { return d/(C6/C1); } in toDays() 38 int excessNanos(long d, long m) { return (int)((d*C1) - (m*C2)); } in excessNanos() 42 public long toMicros(long d) { return x(d, C2/C1, MAX/(C2/C1)); } in toMicros() 53 public long toMicros(long d) { return x(d, C3/C1, MAX/(C3/C1)); } in toMicros() [all …]
|
/external/webrtc/webrtc/base/ |
D | sigslottester.h | 53 template <class A1, class C1> 57 C1* capture1) in SigslotTester1() 72 C1* capture1_; 77 template <class A1, class A2, class C1, class C2> 81 C1* capture1, C2* capture2) in SigslotTester2() 97 C1* capture1_; 103 template <class A1, class A2, class A3, class C1, class C2, class C3> 107 C1* capture1, C2* capture2, C3* capture3) in SigslotTester3() 124 C1* capture1_; 131 template <class A1, class A2, class A3, class A4, class C1, class C2, class C3, [all …]
|
/external/llvm/test/TableGen/ |
D | MultiClassInherit.td | 35 class C1<int A, string B> { 41 def T : C1<4, "blah">; 44 def S1 : C1<a1, "foo"> { 48 def S2 : C1<a1, "bar">; 52 def S3 : C1<a2, "foo"> { 56 def S4 : C1<a2, "bar">; 60 def S5 : C1<bs1, "moo"> { 64 def S6 : C1<bs1, "baz">; 70 def S7 : C1<bs3, "moo"> { 74 def S8 : C1<bs3, "baz">; [all …]
|
D | DefmInherit.td | 10 class C1<int A, string B> { 16 def T : C1<4, "blah">; 19 def S1 : C1<a, "foo"> { 23 def S2 : C1<a, "bar">; 27 def S3 : C1<a, "moo"> { 31 def S4 : C1<a, "baz">; 36 def T4 : C1<6, "foo">;
|
D | MultiClass.td | 8 class C1<int A, string B> { 14 def T : C1<4, "blah">; 17 def S1 : C1<a, "foo"> { 21 def S2 : C1<a, "bar">; 26 def T4 : C1<6, "foo">;
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
D | p9.cpp | 5 template<char C1, char C2> 10 template<int C1> 11 struct X<C1, C1> { 22 template<unsigned char C1, unsigned char C3> 23 struct int_values<C1, 12, C3> {
|
/external/clang/test/SemaCXX/ |
D | nested-name-spec.cpp | 317 struct C1 { struct 334 struct S1a { int f(C1::C2); }; 335 struct S1b { int f(C1:C2); }; // expected-error{{unexpected ':' in nested name specifier; did you … 338 C1::C2 f(C1::C2); 341 C1::C2 f(C1:C2); // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 345 int f(C1::C2), C2 : N1; 372 C1::C2 m1 : B1::B2; 375 …C1::C2 m1 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?… 385 C1::C2 : B1:B2; // expected-error{{unexpected ':' in nested name specifier; did you mean '::'?}} 393 typedef unsigned C1; typedef [all …]
|
/external/llvm/lib/IR/ |
D | ConstantFold.cpp | 918 Constant *C1, Constant *C2) { in ConstantFoldBinaryInstruction() argument 920 if (isa<UndefValue>(C1) || isa<UndefValue>(C2)) { in ConstantFoldBinaryInstruction() 923 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) in ConstantFoldBinaryInstruction() 926 return Constant::getNullValue(C1->getType()); in ConstantFoldBinaryInstruction() 930 return UndefValue::get(C1->getType()); in ConstantFoldBinaryInstruction() 932 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) // undef & undef -> undef in ConstantFoldBinaryInstruction() 933 return C1; in ConstantFoldBinaryInstruction() 934 return Constant::getNullValue(C1->getType()); // undef & X -> 0 in ConstantFoldBinaryInstruction() 937 if (isa<UndefValue>(C1) && isa<UndefValue>(C2)) in ConstantFoldBinaryInstruction() 938 return C1; in ConstantFoldBinaryInstruction() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | vtable-layout-extreme.cpp | 10 class C1 class 17 , virtual public C1 23 , virtual public C1 42 , public C1 52 , public C1 71 , public C1
|
/external/llvm/include/llvm/IR/ |
D | Constants.h | 920 static Constant *getAdd(Constant *C1, Constant *C2, 922 static Constant *getFAdd(Constant *C1, Constant *C2); 923 static Constant *getSub(Constant *C1, Constant *C2, 925 static Constant *getFSub(Constant *C1, Constant *C2); 926 static Constant *getMul(Constant *C1, Constant *C2, 928 static Constant *getFMul(Constant *C1, Constant *C2); 929 static Constant *getUDiv(Constant *C1, Constant *C2, bool isExact = false); 930 static Constant *getSDiv(Constant *C1, Constant *C2, bool isExact = false); 931 static Constant *getFDiv(Constant *C1, Constant *C2); 932 static Constant *getURem(Constant *C1, Constant *C2); [all …]
|
/external/lzma/CPP/7zip/ |
D | Guid.txt | 1 {23170F69-40C1-278A-0000-00yy00xx0000} 59 C1 IHashers 131 {23170F69-40C1-278A-1000-000110xx0000} 183 {23170F69-40C1-278A-1000-000100030000} CAgentArchiveHandle 184 {23170F69-40C1-278A-1000-000100020000} ContextMenu.h::CZipContextMenu 186 {23170F69-40C1-278B- old codecs clsids 188 {23170F69-40C1-278D-1000-000100020000} OptionsDialog.h::CLSID_CSevenZipOptions 190 {23170F69-40C1-2790-id} Codec Decoders 191 {23170F69-40C1-2791-id} Codec Encoders 192 {23170F69-40C1-2792-id} Hashers
|
/external/valgrind/VEX/orig_ppc32/ |
D | morefp.orig | 11 …93 21 02 94 39 21 00 30 93 41 02 98 93 61 02 9C 93 81 02 A0 93 A1 02 A4 93 C1 02 A8 93 E1 02 AC 90… 86 . 93 21 00 14 7C 99 23 78 90 C1 00 34 80 03 00 7C 93 A1 00 24 7C 7D 1B 78 2F 80 00 00 93 C1 00 28 9… 131 …83 01 00 10 83 21 00 14 83 41 00 18 83 61 00 1C 83 81 00 20 83 A1 00 24 83 C1 00 28 83 E1 00 2C 38… 185 …93 61 00 1C 7C DB 33 78 93 81 00 20 7C 9C 23 78 93 A1 00 24 7C BD 2B 78 93 C1 00 28 7F C8 02 A6 93… 200 . 80 61 00 34 83 41 00 18 83 61 00 1C 7C 68 03 A6 83 81 00 20 83 A1 00 24 83 C1 00 28 83 E1 00 2C 3… 221 . 93 C1 00 18 7F C8 02 A6 93 A1 00 14 91 21 00 24 38 A0 01 2C 80 04 00 00 83 BE 04 C8 81 84 00 08 3… 224 …7C 7B 1B 78 93 A1 00 14 7C 9D 23 78 93 E1 00 1C 7C 7F 1B 78 93 81 00 10 93 C1 00 18 90 01 00 24 40… 239 . 94 21 FF F0 93 C1 00 08 7F C8 02 A6 7D 88 03 A6 41 9D 00 28 254 . 83 C1 00 08 38 21 00 10 91 23 00 00 4E 80 00 20 260 . 81 01 00 24 7F 63 DB 78 83 81 00 10 83 61 00 0C 7D 08 03 A6 83 A1 00 14 83 C1 00 18 83 E1 00 1C 3… [all …]
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineMulDivRem.cpp | 80 static bool MultiplyOverflows(const APInt &C1, const APInt &C2, APInt &Product, in MultiplyOverflows() argument 84 Product = C1.smul_ov(C2, Overflow); in MultiplyOverflows() 86 Product = C1.umul_ov(C2, Overflow); in MultiplyOverflows() 92 static bool IsMultiple(const APInt &C1, const APInt &C2, APInt &Quotient, in IsMultiple() argument 94 assert(C1.getBitWidth() == C2.getBitWidth() && in IsMultiple() 102 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue()) in IsMultiple() 105 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned); in IsMultiple() 107 APInt::sdivrem(C1, C2, Quotient, Remainder); in IsMultiple() 109 APInt::udivrem(C1, C2, Quotient, Remainder); in IsMultiple() 199 Constant *C1, *C2; in visitMul() local [all …]
|
/external/llvm/test/Linker/ |
D | alias.ll | 1 ; RUN: llvm-link %s %S/Inputs/alias.ll -S -o - | FileCheck --check-prefix=C1 %s 5 ; The C1 direction is incorrect. 8 ; When moving a replacement to an aliasee to a module that has an alias (C1), 10 ; The C1 case doesn't happen when using a system linker with a plugin because 17 ; C1-DAG: @foo = alias i32, i32* @zed 21 ; C1-DAG: @bar = alias i32, i32* @foo 27 ; C1-DAG: @foo2 = alias i16, bitcast (i32* @zed to i16*) 31 ; C1-DAG: @bar2 = alias i32, bitcast (i16* @foo2 to i32*) 36 ; C1-DAG: @zed = global i32 42
|
/external/llvm/test/Transforms/InstSimplify/ |
D | apint-or.ll | 5 ;; If we have: ((V + N) & C1) | (V & C2) 6 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 8 %C1 = xor i39 274877906943, -1 ;; C2 = 274877906943 11 %B = and i39 %A, %C1 37 ;; If we have: ((V + N) & C1) | (V & C2) 38 ;; .. and C2 = ~C1 and C2 is 0+1+ and (N & C2) == 0 40 %C1 = xor i399 274877906943, -1 ;; C2 = 274877906943 43 %B = and i399 %A, %C1
|