/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/clang/test/CXX/temp/temp.param/ |
D | p10-0x.cpp | 4 template<typename, int> struct Y2; 10 template<template<class> class F = Y2, template<class> class G> using B2t = F<G<int>>; 12 template<int N, int M = 5> using B2n = Y2<int, N + M>; 13 template<int N = 5, int M> using B2n = Y2<int, N + M>;
|
D | p10.cpp | 3 template<typename, int> struct Y2; 9 template<template<class, int> class = Y2, template<class> class> class B2t;
|
D | p11.cpp | 3 template<typename, int> struct Y2;
|
D | p2.cpp | 20 template<class X1 *xptr> struct Y2 { }; struct
|
D | p12.cpp | 3 template<typename, int> struct Y2;
|
/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/clang/test/SemaTemplate/ |
D | instantiate-static-var.cpp | 61 struct Y2 { struct 72 Z1<Y2<X2>::value> x2; in Test() argument 73 int y2[Y2<X2>::value]; in Test()
|
D | instantiate-local-class.cpp | 7 } Y2; in f0() typedef 9 Y2 y = Y(); in f0()
|
D | instantiate-expr-1.cpp | 164 template<int> struct Y2 { struct 171 template void Y2<3>::f();
|
/external/llvm/unittests/VMCore/ |
D | DominatorTreeTest.cpp | 25 Instruction *Y2 = BBI++; in runOnFunction() local 101 EXPECT_TRUE(DT->dominates(Y1, Y2)); in runOnFunction() 102 EXPECT_FALSE(DT->dominates(Y2, Y1)); in runOnFunction() 103 EXPECT_FALSE(DT->dominates(Y2, Y2)); in runOnFunction() 116 EXPECT_TRUE(DT->dominates(Y2, Y9)); in runOnFunction()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
D | SHA1Digest.java | 128 private static final int Y2 = 0x6ed9eba1; field in SHA1Digest 208 E += (A << 5 | A >>> 27) + h(B, C, D) + X[idx++] + Y2; in processBlock() 211 D += (E << 5 | E >>> 27) + h(A, B, C) + X[idx++] + Y2; in processBlock() 214 C += (D << 5 | D >>> 27) + h(E, A, B) + X[idx++] + Y2; in processBlock() 217 B += (C << 5 | C >>> 27) + h(D, E, A) + X[idx++] + Y2; in processBlock() 220 A += (B << 5 | B >>> 27) + h(C, D, E) + X[idx++] + Y2; in processBlock()
|
/external/llvm/test/Transforms/BBVectorize/ |
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 64 %Y2 = fmul double %X2, %A2 66 %Z1 = fadd double %Y2, %B1 67 %Z2 = fadd double %Y2, %B2 89 %Y2 = fmul double %X2, %A2 112 %Y2 = fmul <2 x float> %X2, %A2 115 %Z2 = fadd <2 x float> %Y2, %B2 [all …]
|
D | simple-int.ll | 13 %Y2 = call double @llvm.fma.f64(double %X2, double %A2, double %C2) 15 %Z2 = fadd double %Y2, %B2 39 %Y2 = call double @llvm.cos.f64(double %X2) 41 %Z2 = fadd double %Y2, %B2 64 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P) 66 %Z2 = fadd double %Y2, %B2 90 %Y2 = call double @llvm.powi.f64(double %X2, i32 %P2) 92 %Z2 = fadd double %Y2, %B2
|
D | simple-tst.ll | 12 %Y2 = fmul ppc_fp128 %X2, %A2 14 %Z2 = fadd ppc_fp128 %Y2, %B2
|
D | req-depth.ll | 9 %Y2 = fmul double %X2, %A2 10 %R = fmul double %Y1, %Y2
|
D | simple-sel.ll | 16 %Y2 = fmul double %X2, %A2 19 %Z2 = select i1 %C2, double %Y2, double %B2 43 %Y2 = fmul double %X2, %A2 50 %Z2 = select i1 %C2, double %Y2, double %B2
|
D | search-limit.ll | 17 %Y2 = fmul double %X2, %A2 23 %mul41 = fmul double %Z1, %Y2 36 %Z2 = fadd double %Y2, %B2
|
D | simple3.ll | 18 %Y2 = fmul double %X2, %A2 22 %Z2 = fadd double %Y2, %B2
|
/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/clang/test/CXX/class.access/class.friend/ |
D | p3-cxx0x.cpp | 19 struct Y2 { struct 27 X1<Y2> x1a; argument
|
/external/clang/test/CXX/over/over.over/ |
D | p1.cpp | 86 template<int (&)(int)> struct Y2 { }; struct 93 Y2<f0> y2;
|
/external/llvm/test/Transforms/IndVarSimplify/ |
D | exit_value_tests.ll | 45 %Y = phi i32 [ 15, %0 ], [ %Y2, %Loop ] ; <i32> [#uses=1] 46 %Y2 = add i32 %Y, %X ; <i32> [#uses=2] 52 ret i32 %Y2
|
/external/opencv/cv/src/ |
D | cvoptflowbm.cpp | 433 int Y2 = Y1 + offY + ss[k].y; in icvCalcOpticalFlowBM_8u32fR() local 437 if( Y2 < 0 ) in icvCalcOpticalFlowBM_8u32fR() 442 if( Y2 + CurrentHeight >= imgSize.height ) in icvCalcOpticalFlowBM_8u32fR() 459 icvCopyBM_8u_C1R( imgB + Y2 * imgStep + X2, in icvCalcOpticalFlowBM_8u32fR()
|