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

1 2

  /external/clang/test/CXX/temp/temp.param/
p11.cpp 2 template<typename> struct Y1;
9 template<template<class> class = Y1, // expected-note{{previous default template argument defined here}}
p10.cpp 3 template<typename> struct Y1;
9 template<template<class, int> class, template<class> class = Y1> class B2t;
p12.cpp 2 template<typename> struct Y1; // expected-note{{too few template parameters in template template argument}}
15 template<class> class = Y1> // expected-note{{previous default template argument defined here}}
21 template<class> class = Y1> // expected-error{{template parameter redefines default argument}}
36 = Y1> // expected-error{{template template argument has different template parameters than its corresponding template template parameter}}
p10-0x.cpp 4 template<typename> struct Y1;
10 template<template<class> class F, template<class> class G = Y1> using B2t = F<G<int>>;
p2.cpp 13 template<typename T, typename X<T>::type Value> struct Y1;
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p1.cpp 23 struct Y1 { }; //
29 struct Y1 { };
33 struct Z : public X<T>::template Y1<U> { };
  /external/clang/test/SemaCXX/
default-constructor-initializers.cpp 25 struct Y1 { // has no implicit default constructor
26 Y1(int);
29 struct Y2 : Y1 {
virtual-override.cpp 215 template <typename T1, typename T> class Y1 : public Y<T> { virtual T1 f(); };
216 Y1<Derived*, Base*> y;
constant-expression-cxx11.cpp 64 struct Y1 : virtual X {};
66 struct Z : Y1, Y2 {};
68 static_assert((X*)(Y1*)&z != (X*)(Y2*)&z, "");
    [all...]
  /external/clang/test/CXX/class.access/class.friend/
p3-cxx0x.cpp 7 class Y1 { };
9 X0<Y1> x0a;
10 X0<Y1 *> x0b;
16 friend typename T::type; // expected-error{{no type named 'type' in 'Y1'}}
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
  /external/clang/test/Sema/
warn-unused-variables.c 29 (void)(Y1 + X1); // expected-error {{use of undeclared identifier 'Y1'}}
  /external/clang/test/SemaTemplate/
instantiate-static-var.cpp 47 struct Y1 {
70 Z1<Y1<X1>::value> x;
71 int y[Y1<X1>::value];
  /external/clang/test/CXX/over/over.over/
p1.cpp 85 template<float(float)> struct Y1 { };
91 Y1<f0> y1; variable
92 Y1<&f0> y1a;
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 36 Instruction *Y1 = BBI++;
112 EXPECT_FALSE(DT->dominates(Y1, Y1));
113 EXPECT_TRUE(DT->dominates(Y1, Y2));
114 EXPECT_FALSE(DT->dominates(Y2, Y1));
133 EXPECT_TRUE(DT->dominates(Y1, Y6));
137 EXPECT_FALSE(DT->dominates(Y6, Y1));
140 EXPECT_FALSE(DT->dominates(Y1, BB0));
141 EXPECT_TRUE(DT->dominates(Y1, BB1));
142 EXPECT_TRUE(DT->dominates(Y1, BB2))
    [all...]
  /external/clang/test/CodeGenCXX/
microsoft-abi-rtti.cpp 19 struct Y1 : W1, virtual V1 {} y1; variable in typeref:struct:Y1
69 // CHECK: @"\01??_R2Y1@@8" = linkonce_odr constant [7 x %rtti.BaseClassDescriptor*] [%rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@Y1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@?0A@EA@W1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3FA@V1@@8", %rtti.BaseClassDescriptor* @"\01??_R1A@A@3EA@X1@@8", %rtti.BaseClassDescriptor* null]
70 // CHECK: @"\01??_R1A@?0A@EA@Y1@@8" = linkonce_odr constant %rtti.BaseClassDescriptor { i8* bitcast (%rtti.TypeDescriptor8* @"\01??_R0?AUY1@@@8" to i8*), i32 5, i32 0, i32 -1, i32 0, i32 64, %rtti.ClassHierarchyDescriptor* @"\01??_R3Y1@@8" }
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 539 ECFieldElement X1 = this.x, Y1 = this.y;
546 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
562 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1);
576 ECFieldElement u2 = Z2IsOne ? Y1 : Y1.multiply(Z2);
623 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2);
635 ECFieldElement A1 = W1.subtract(W2).multiply(Y1);
669 Z2Squared = Z2; U1 = X1; S1 = Y1;
676 S1 = Z2Cubed.multiply(Y1);
755 ECFieldElement Y1 = this.y
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 133 private static final int Y1 = 0x5a827999;
189 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
191 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
194 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
197 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
200 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
203 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
  /external/opencv/cv/src/
cvoptflowbm.cpp 139 int Y1 = 0;
348 Y1 = 0;
389 icvCopyBM_8u_C1R( imgB + (Y1 + offY)*imgStep + (X1 + offX),
401 icvCopyBM_8u_C1R( imgB + (Y1 + offY) * imgStep + (X1 + offX), imgStep,
433 int Y2 = Y1 + offY + ss[k].y;
467 icvCopyBM_8u_C1R( imgB + Y1 * imgStep + X1, imgStep,
522 Y1 += blockSize.height;
  /external/chromium_org/third_party/skia/src/core/
SkLineClipper.cpp 36 double Y1 = src[1].fY;
37 double result = X0 + ((double)Y - Y0) * (X1 - X0) / (Y1 - Y0);
57 double Y1 = src[1].fY;
58 double result = Y0 + ((double)X - X0) * (Y1 - Y0) / (X1 - X0);
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
rsaz-avx2.pl 130 my $Y1="%ymm12";
293 $TEMP0=$Y1;
439 $TEMP3 = $Y1;
481 vmovd %eax, $Y1
485 vpbroadcastq $Y1, $Y1
510 vpmuludq 32*1-128($np), $Y1, $TEMP0
515 vpmuludq 32*2-128($np), $Y1, $TEMP1
519 vpmuludq 32*3-128($np), $Y1, $TEMP2
527 vpmuludq 32*4-128($np), $Y1, $TEMP
    [all...]
  /external/clang/test/CXX/class.access/
p4.cpp 359 struct Y1 {
364 const X &xr = Y1(); // expected-error{{temporary of type 'test14::X' has private destructor}}
  /external/chromium_org/media/base/simd/
linear_scale_yuv_to_rgb_mmx_x64.asm 99 ; Interpolate first Y1.
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bitvect.c     [all...]
  /external/opencv/cvaux/src/
cvtrifocal.cpp 961 double x1,y1,x2,y2; local
963 y1 = cvmGet(tmpProjPoints[currImage],1,i);
969 dy = y1-y2;
1242 double x1,y1,x2,y2; local
1469 double x1,y1,w1,x2,y2,w2; local
    [all...]
  /external/chromium_org/third_party/d3/src/
d3.js     [all...]

Completed in 684 milliseconds

1 2