/external/clang/test/SemaCXX/ |
D | default-constructor-initializers.cpp | 29 struct Y2 : Y1 { struct 30 Y2(int); 31 Y2(); 34 struct Y3 : public Y2 { 39 Y2 y2;
|
D | typedef-redecl.cpp | 16 typedef int Y2; // expected-note{{declared here}} typedef 17 struct Y2; // expected-error{{definition of type 'Y2' conflicts with typedef of the same name}}
|
/external/llvm/test/Transforms/BBVectorize/X86/ |
D | simple-int.ll | 14 %Y2 = call double @llvm.fma.f64(double %X2, double %A2, double %C2) 16 %Z2 = fadd double %Y2, %B2 28 %Y2 = call double @llvm.fmuladd.f64(double %X2, double %A2, double %C2) 30 %Z2 = fadd double %Y2, %B2 42 %Y2 = call double @llvm.cos.f64(double %X2) 44 %Z2 = fadd double %Y2, %B2 56 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P) 58 %Z2 = fadd double %Y2, %B2 71 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P2) 73 %Z2 = fadd double %Y2, %B2
|
D | simple.ll | 9 %Y2 = fmul double %X2, %A2 11 %Z2 = fadd double %Y2, %B2 28 %Y2 = fmul double %X2, %A2 30 %Z2 = fadd double %Y2, %B2 32 %W2 = fadd double %Y2, %Z2 64 %Y2 = fmul double %X2, %A2 65 %Z1 = fadd double %Y2, %B1 84 %Y2 = fmul double %X2, %A2 85 %Z1 = fadd double %Y2, %B1 87 %W1 = fadd double %Y2, %Z1 [all …]
|
/external/clang/test/CXX/temp/temp.param/ |
D | p10-0x.cpp | 5 template<typename, int> struct Y2; 11 template<template<class> class F = Y2, template<class> class G> using B2t = F<G<int>>; 13 template<int N, int M = 5> using B2n = Y2<int, N + M>; 14 template<int N = 5, int M> using B2n = Y2<int, N + M>;
|
D | p10.cpp | 4 template<typename, int> struct Y2; 10 template<template<class, int> class = Y2, template<class> class> class B2t;
|
/external/llvm/test/Transforms/BBVectorize/ |
D | simple-int.ll | 26 %Y2 = call double @llvm.fma.f64(double %X2, double %A2, double %C2) 28 %Z2 = fadd double %Y2, %B2 52 %Y2 = call double @llvm.fmuladd.f64(double %X2, double %A2, double %C2) 54 %Z2 = fadd double %Y2, %B2 78 %Y2 = call double @llvm.cos.f64(double %X2) 80 %Z2 = fadd double %Y2, %B2 103 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P) 105 %Z2 = fadd double %Y2, %B2 129 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P2) 131 %Z2 = fadd double %Y2, %B2 [all …]
|
D | simple.ll | 15 %Y2 = fmul double %X2, %A2 18 %Z2 = fadd double %Y2, %B2 39 %Y2 = fmul double %X2, %A2 41 %Z1 = fadd double %Y2, %B1 65 %Y2 = fmul double %X2, %A2 67 %Z1 = fadd double %Y2, %B1 68 %Z2 = fadd double %Y2, %B2 90 %Y2 = fmul double %X2, %A2 113 %Y2 = fmul <2 x float> %X2, %A2 116 %Z2 = fadd <2 x float> %Y2, %B2 [all …]
|
/external/llvm/unittests/Analysis/ |
D | UnrollAnalyzer.cpp | 105 Instruction *Y2 = &*BBI++; in TEST() local 113 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() 124 I2 = SimplifiedValuesVector[TripCount - 1].find(Y2); in TEST() 170 Instruction *Y2 = &*BBI; in TEST() local 177 auto I2 = SimplifiedValuesVector[0].find(Y2); in TEST() 213 Instruction *Y2 = &*BBI++; in TEST() local 220 auto I2 = SimplifiedValuesVector[5].find(Y2); in TEST() 306 Instruction *Y2 = &*BBI++; in TEST() local 315 auto I2 = SimplifiedValuesVector[5].find(Y2); in TEST()
|
/external/swiftshader/third_party/LLVM/test/TableGen/ |
D | Dag.td | 23 def Y2 : yclass; 30 def VAL2 : C2<Y2>; 33 // CHECK-NEXT: dag d = (X2 Y2) 34 // CHECK-NEXT: dag e = (Y2 X2)
|
/external/llvm/test/TableGen/ |
D | Dag.td | 23 def Y2 : yclass; 30 def VAL2 : C2<Y2>; 33 // CHECK-NEXT: dag d = (X2 Y2) 34 // CHECK-NEXT: dag e = (Y2 X2)
|
/external/boringssl/src/crypto/bn/asm/ |
D | rsaz-avx2.pl | 119 my $Y2="%ymm13"; 291 $TEMP2=$Y2; 437 $TEMP4 = $Y2; 504 vmovd %eax, $Y2 505 vpbroadcastq $Y2, $Y2 544 vpmuludq 32*1-8-128($np), $Y2, $TEMP2 # see above 549 vpmuludq 32*2-8-128($np), $Y2, $TEMP0 # see above 557 vpmuludq $Y2, $TEMP1, $TEMP1 561 vpmuludq $Y2, $TEMP2, $TEMP2 567 vpmuludq $Y2, $TEMP0, $TEMP0 [all …]
|
/external/clang/test/SemaTemplate/ |
D | instantiate-static-var.cpp | 70 struct Y2 { struct 81 Z1<Y2<X2>::value> x2; in Test() argument 82 int y2[Y2<X2>::value]; in Test()
|
/external/swiftshader/third_party/LLVM/test/Transforms/InstCombine/ |
D | shift-sra.ll | 29 %Y2 = ashr i64 %Y, 63 32 %P = phi i64 [%X2, %T], [%Y2, %F] 47 %Y2 = ashr i64 %Y, 63 50 %P = phi i64 [%X2, %T], [%Y2, %F]
|
/external/llvm/test/Transforms/InstCombine/ |
D | shift-sra.ll | 29 %Y2 = ashr i64 %Y, 63 32 %P = phi i64 [%X2, %T], [%Y2, %F] 47 %Y2 = ashr i64 %Y, 63 50 %P = phi i64 [%X2, %T], [%Y2, %F]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
D | SHA1Digest.java | 157 private static final int Y2 = 0x6ed9eba1; field in SHA1Digest 237 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2; in processBlock() 240 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2; in processBlock() 243 C += (D << 5 | D >>> 27) + h(E, A, B) + X[idx++] + Y2; in processBlock() 246 B += (C << 5 | C >>> 27) + h(D, E, A) + X[idx++] + Y2; in processBlock() 249 A += (B << 5 | B >>> 27) + h(C, D, E) + X[idx++] + Y2; in processBlock()
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/ |
D | MSOutlookKeyIdCalculator.java | 263 private static final int Y2 = 0x6ed9eba1; field in MSOutlookKeyIdCalculator.SHA1Digest 343 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2; in processBlock() 346 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2; in processBlock() 349 C += (D << 5 | D >>> 27) + h(E, A, B) + X[idx++] + Y2; in processBlock() 352 B += (C << 5 | C >>> 27) + h(D, E, A) + X[idx++] + Y2; in processBlock() 355 A += (B << 5 | B >>> 27) + h(C, D, E) + X[idx++] + Y2; in processBlock()
|
/external/autotest/client/deps/glbench/src/ |
D | yuv2rgb_1.glslf | 81 * | Y0| Y0| Y1| Y1| Y2| Y2| 83 * | Y0| Y0| Y1| Y1| Y2| Y2| 109 * | Y2| Y2| Y3| Y3| 111 * | Y2| Y2| Y3| Y3|
|
/external/llvm/unittests/IR/ |
D | DominatorTreeTest.cpp | 39 Instruction *Y2 = &*BBI++; in runOnFunction() local 115 EXPECT_TRUE(DT->dominates(Y1, Y2)); in runOnFunction() 116 EXPECT_FALSE(DT->dominates(Y2, Y1)); in runOnFunction() 117 EXPECT_FALSE(DT->dominates(Y2, Y2)); in runOnFunction() 130 EXPECT_TRUE(DT->dominates(Y2, Y9)); in runOnFunction()
|
/external/swiftshader/src/Shader/ |
D | SetupRoutine.cpp | 324 Int Y2 = *Pointer<Int>(v2 + OFFSET(Vertex,Y)); in generate() local 329 Y2 = Y1 + X0 - X1; in generate() 339 Y2 -= Y0; in generate() 345 Float y2 = w2 * (1.0f / 16.0f) * Float(Y2); in generate() 415 Float y2 = Float(Y2) * (1.0f / 16.0f); in generate() 558 …primitive, Pointer<Byte> &data, const Int &X1, const Int &Y1, const Int &X2, const Int &Y2, Int &q) in edge() argument 560 If(Y1 != Y2) in edge() 565 Bool swap = Y2 < Y1; in edge() 575 Y1 = IfThenElse(swap, Y2, Y1); in edge() 576 Y2 = IfThenElse(swap, Y0, Y2); in edge() [all …]
|
/external/clang/test/CodeGenCXX/ |
D | microsoft-abi-rtti.cpp | 25 struct Y2 { virtual void f() {} }; in f() argument 26 struct A2 : Z2, Y2 {};
|
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/ |
D | const_optional_U.pass.cpp | 47 struct Y2 struct 49 Y2() = default; 50 Y2(const int&) = delete; 51 Y2& operator=(const int&) { return *this; } in operator =() argument
|
D | optional_U.pass.cpp | 48 struct Y2 struct 50 Y2() = default; 51 Y2(const int&) = delete; 52 Y2& operator=(const int&) { return *this; } in operator =() argument
|
/external/clang/test/CXX/class.access/class.friend/ |
D | p3-cxx0x.cpp | 19 struct Y2 { struct 27 X1<Y2> x1a; argument
|
/external/llvm/test/Transforms/BBVectorize/xcore/ |
D | no-vector-registers.ll | 13 %Y2 = fmul double %X2, %A2 15 %Z2 = fadd double %Y2, %B2
|