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

1 2

  /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/
accessible-base.cpp 10 struct Y1 : X1, virtual A
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;
  /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/CXX/over/over.over/
p1.cpp 85 template<float(float)> struct Y1 { };
91 Y1<f0> y1; variable
92 Y1<&f0> y1a;
  /external/clang/test/CodeGenCXX/
microsoft-abi-rtti.cpp 19 struct Y1 : W1, virtual V1 {} y1; variable in typeref:struct:Y1
69 // CHECK-DAG: @"\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], comdat
70 // CHECK-DAG: @"\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" }, comdat
    [all...]
  /external/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/clang/test/SemaTemplate/
instantiate-static-var.cpp 47 struct Y1 {
70 Z1<Y1<X1>::value> x;
71 int y[Y1<X1>::value];
  /external/llvm/unittests/IR/
DominatorTreeTest.cpp 37 Instruction *Y1 = BBI++;
113 EXPECT_FALSE(DT->dominates(Y1, Y1));
114 EXPECT_TRUE(DT->dominates(Y1, Y2));
115 EXPECT_FALSE(DT->dominates(Y2, Y1));
134 EXPECT_TRUE(DT->dominates(Y1, Y6));
138 EXPECT_FALSE(DT->dominates(Y6, Y1));
141 EXPECT_FALSE(DT->dominates(Y1, BB0));
142 EXPECT_TRUE(DT->dominates(Y1, BB1));
143 EXPECT_TRUE(DT->dominates(Y1, BB2))
    [all...]
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/
MSOutlookKeyIdCalculator.java 262 private static final int Y1 = 0x5a827999;
318 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
320 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
323 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
326 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
329 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
332 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
SHA1Digest.java 151 private static final int Y1 = 0x5a827999;
207 // E = rotateLeft(A, 5) + f(B, C, D) + E + X[idx++] + Y1
209 E += (A << 5 | A >>> 27) + f(B, C, D) + X[idx++] + Y1;
212 D += (E << 5 | E >>> 27) + f(A, B, C) + X[idx++] + Y1;
215 C += (D << 5 | D >>> 27) + f(E, A, B) + X[idx++] + Y1;
218 B += (C << 5 | C >>> 27) + f(D, E, A) + X[idx++] + Y1;
221 A += (B << 5 | B >>> 27) + f(C, D, E) + X[idx++] + Y1;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Point.java 86 SecP192K1FieldElement X1 = (SecP192K1FieldElement)this.x, Y1 = (SecP192K1FieldElement)this.y;
122 S1 = Y1.x;
133 SecP192K1Field.multiply(S1, Y1.x, S1);
204 SecP192K1FieldElement Y1 = (SecP192K1FieldElement)this.y;
205 if (Y1.isZero())
215 SecP192K1Field.square(Y1.x, Y1Squared);
245 SecP192K1Field.twice(Y1.x, Z3.x);
269 ECFieldElement Y1 = this.y;
270 if (Y1.isZero())
SecP224K1Point.java 86 SecP224K1FieldElement X1 = (SecP224K1FieldElement)this.x, Y1 = (SecP224K1FieldElement)this.y;
122 S1 = Y1.x;
133 SecP224K1Field.multiply(S1, Y1.x, S1);
204 SecP224K1FieldElement Y1 = (SecP224K1FieldElement)this.y;
205 if (Y1.isZero())
215 SecP224K1Field.square(Y1.x, Y1Squared);
245 SecP224K1Field.twice(Y1.x, Z3.x);
269 ECFieldElement Y1 = this.y;
270 if (Y1.isZero())
SecP256K1Point.java 86 SecP256K1FieldElement X1 = (SecP256K1FieldElement)this.x, Y1 = (SecP256K1FieldElement)this.y;
122 S1 = Y1.x;
133 SecP256K1Field.multiply(S1, Y1.x, S1);
204 SecP256K1FieldElement Y1 = (SecP256K1FieldElement)this.y;
205 if (Y1.isZero())
215 SecP256K1Field.square(Y1.x, Y1Squared);
245 SecP256K1Field.twice(Y1.x, Z3.x);
269 ECFieldElement Y1 = this.y;
270 if (Y1.isZero())
SecP521R1Point.java 83 SecP521R1FieldElement X1 = (SecP521R1FieldElement)this.x, Y1 = (SecP521R1FieldElement)this.y;
118 S1 = Y1.x;
129 SecP521R1Field.multiply(S1, Y1.x, S1);
197 SecP521R1FieldElement Y1 = (SecP521R1FieldElement)this.y;
198 if (Y1.isZero())
209 SecP521R1Field.square(Y1.x, Y1Squared);
250 SecP521R1Field.twice(Y1.x, Z3.x);
274 ECFieldElement Y1 = this.y;
275 if (Y1.isZero())
SecP192R1Point.java 85 SecP192R1FieldElement X1 = (SecP192R1FieldElement)this.x, Y1 = (SecP192R1FieldElement)this.y;
121 S1 = Y1.x;
132 SecP192R1Field.multiply(S1, Y1.x, S1);
203 SecP192R1FieldElement Y1 = (SecP192R1FieldElement)this.y;
204 if (Y1.isZero())
216 SecP192R1Field.square(Y1.x, Y1Squared);
257 SecP192R1Field.twice(Y1.x, Z3.x);
281 ECFieldElement Y1 = this.y;
282 if (Y1.isZero())
SecP224R1Point.java 84 SecP224R1FieldElement X1 = (SecP224R1FieldElement)this.x, Y1 = (SecP224R1FieldElement)this.y;
120 S1 = Y1.x;
131 SecP224R1Field.multiply(S1, Y1.x, S1);
201 SecP224R1FieldElement Y1 = (SecP224R1FieldElement)this.y;
202 if (Y1.isZero())
214 SecP224R1Field.square(Y1.x, Y1Squared);
255 SecP224R1Field.twice(Y1.x, Z3.x);
279 ECFieldElement Y1 = this.y;
280 if (Y1.isZero())
SecP256R1Point.java 84 SecP256R1FieldElement X1 = (SecP256R1FieldElement)this.x, Y1 = (SecP256R1FieldElement)this.y;
120 S1 = Y1.x;
131 SecP256R1Field.multiply(S1, Y1.x, S1);
201 SecP256R1FieldElement Y1 = (SecP256R1FieldElement)this.y;
202 if (Y1.isZero())
214 SecP256R1Field.square(Y1.x, Y1Squared);
255 SecP256R1Field.twice(Y1.x, Z3.x);
279 ECFieldElement Y1 = this.y;
280 if (Y1.isZero())
SecP384R1Point.java 84 SecP384R1FieldElement X1 = (SecP384R1FieldElement)this.x, Y1 = (SecP384R1FieldElement)this.y;
120 S1 = Y1.x;
131 SecP384R1Field.multiply(S1, Y1.x, S1);
202 SecP384R1FieldElement Y1 = (SecP384R1FieldElement)this.y;
203 if (Y1.isZero())
215 SecP384R1Field.square(Y1.x, Y1Squared);
256 SecP384R1Field.twice(Y1.x, Z3.x);
280 ECFieldElement Y1 = this.y;
281 if (Y1.isZero())
  /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/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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsintrp.c 190 cmsUInt16Number y1, y0; local
209 y1 = LutTable[cell0+1];
212 Output[0] = LinearInterp(rest, y0, y1);
227 cmsFloat32Number y1, y0; local
249 y1 = LutTable[cell1] ;
251 Output[0] = y0 + (y1 - y0) * rest;
293 cmsFloat32Number y1, y0; local
321 y1 = LutTable[cell1 + OutChan] ;
323 Output[OutChan] = y0 + (y1 - y0) * rest;
340 X0, Y0, X1, Y1;
1048 cmsFloat32Number y1 = Tmp2[i]; local
1136 cmsFloat32Number y1 = Tmp2[i]; local
1223 cmsFloat32Number y1 = Tmp2[i]; local
1309 cmsFloat32Number y1 = Tmp2[i]; local
1394 cmsFloat32Number y1 = Tmp2[i]; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 82 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
87 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
ECPoint.java 681 ECFieldElement X1 = this.x, Y1 = this.y;
688 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1);
704 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1);
718 ECFieldElement u2 = Z2IsOne ? Y1 : Y1.multiply(Z2);
765 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2);
777 ECFieldElement A1 = W1.subtract(W2).multiply(Y1);
804 Z2Squared = Z2; U1 = X1; S1 = Y1;
811 S1 = Z2Cubed.multiply(Y1);
891 ECFieldElement Y1 = this.y
    [all...]

Completed in 1586 milliseconds

1 2