Home
last modified time | relevance | path

Searched refs:Y1 (Results 1 – 25 of 198) sorted by relevance

12345678

/external/llvm-project/clang/test/SemaTemplate/
Dtemplate-id-expr.cpp96 struct Y1 { struct
111 Y1::template f1<U>(0); in f() argument
112 Y1::template f1(0); in f()
115 Y1::template f2<U>(0); in f()
116 Y1::template f2(0); in f()
118Y1::template f3(0); // expected-error {{'f3' following the 'template' keyword does not refer to a … in f()
119Y1::template f3(); // expected-error {{'f3' following the 'template' keyword does not refer to a t… in f()
122 x = Y1::f4(0); in f()
123 x = Y1::f4<int>(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
124 x = Y1::template f4(0); // expected-error {{assigning to 'int' from incompatible type 'void'}} in f()
[all …]
/external/pdfium/third_party/lcms/src/
Dcmsintrp.c348 X0, Y0, X1, Y1; in BilinearInterpFloat() local
366 Y1 = Y0 + (fclamp(Input[1]) >= 1.0 ? 0 : p->opta[0]); in BilinearInterpFloat()
371 d01 = DENS(X0, Y1); in BilinearInterpFloat()
373 d11 = DENS(X1, Y1); in BilinearInterpFloat()
403 register int X0, X1, Y0, Y1; in BilinearInterp16() local
424 Y1 = Y0 + (Input[1] == 0xFFFFU ? 0 : p->opta[0]); in BilinearInterp16()
429 d01 = DENS(X0, Y1); in BilinearInterp16()
431 d11 = DENS(X1, Y1); in BilinearInterp16()
460 X0, Y0, Z0, X1, Y1, Z1; in TrilinearInterpFloat() local
483 Y1 = Y0 + (fclamp(Input[1]) >= 1.0 ? 0 : p->opta[1]); in TrilinearInterpFloat()
[all …]
/external/llvm/test/Transforms/BBVectorize/
Dsimple-int.ll25 %Y1 = call double @llvm.fma.f64(double %X1, double %A1, double %C1)
27 %Z1 = fadd double %Y1, %B1
37 ; CHECK: %Y1.v.i2.1 = insertelement <2 x double> undef, double %C1, i32 0
38 ; CHECK: %Y1.v.i2.2 = insertelement <2 x double> %Y1.v.i2.1, double %C2, i32 1
39 ; CHECK: %Y1 = call <2 x double> @llvm.fma.v2f64(<2 x double> %X1, <2 x double> %X1.v.i0.2, <2 x do…
40 ; CHECK: %Z1 = fadd <2 x double> %Y1, %X1.v.i1.2
51 %Y1 = call double @llvm.fmuladd.f64(double %X1, double %A1, double %C1)
53 %Z1 = fadd double %Y1, %B1
63 ; CHECK: %Y1.v.i2.1 = insertelement <2 x double> undef, double %C1, i32 0
64 ; CHECK: %Y1.v.i2.2 = insertelement <2 x double> %Y1.v.i2.1, double %C2, i32 1
[all …]
Dsimple.ll14 %Y1 = fmul double %X1, %A1
16 ; CHECK: %Y1 = fmul <2 x double> %X1, %X1.v.i0.2
17 %Z1 = fadd double %Y1, %B1
19 ; CHECK: %Z1 = fadd <2 x double> %Y1, %X1.v.i1.2
38 %Y1 = fmul double %X1, %A1
40 ; CHECK: %Y1 = fmul <2 x double> %X1, %X1.v.i0.2
42 %Z2 = fadd double %Y1, %B2
45 ; CHECK: %Z2 = fadd <2 x double> %Y1, %Z1.v.i1.2
64 %Y1 = fmul double %X1, %A1
66 ; CHECK: %Y1 = fmul <2 x double> %X1, %X1.v.i0.2
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECPoint.java676 ECFieldElement X1 = this.x, Y1 = this.y; in add() local
683 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1); in add()
699 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1); in add()
713 ECFieldElement u2 = Z2IsOne ? Y1 : Y1.multiply(Z2); in add()
760 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2); in add()
772 ECFieldElement A1 = W1.subtract(W2).multiply(Y1); in add()
799 Z2Squared = Z2; U1 = X1; S1 = Y1; in add()
806 S1 = Z2Cubed.multiply(Y1); in add()
886 ECFieldElement Y1 = this.y; in twice() local
887 if (Y1.isZero()) in twice()
[all …]
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/
DECPoint.java682 ECFieldElement X1 = this.x, Y1 = this.y; in add() local
689 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1); in add()
705 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1); in add()
719 ECFieldElement u2 = Z2IsOne ? Y1 : Y1.multiply(Z2); in add()
766 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2); in add()
778 ECFieldElement A1 = W1.subtract(W2).multiply(Y1); in add()
805 Z2Squared = Z2; U1 = X1; S1 = Y1; in add()
812 S1 = Z2Cubed.multiply(Y1); in add()
892 ECFieldElement Y1 = this.y; in twice() local
893 if (Y1.isZero()) in twice()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DECPoint.java682 ECFieldElement X1 = this.x, Y1 = this.y; in add() local
689 ECFieldElement dx = X2.subtract(X1), dy = Y2.subtract(Y1); in add()
705 ECFieldElement Y3 = gamma.multiply(X1.subtract(X3)).subtract(Y1); in add()
719 ECFieldElement u2 = Z2IsOne ? Y1 : Y1.multiply(Z2); in add()
766 ECFieldElement dx = X1.subtract(X2), dy = Y1.subtract(Y2); in add()
778 ECFieldElement A1 = W1.subtract(W2).multiply(Y1); in add()
805 Z2Squared = Z2; U1 = X1; S1 = Y1; in add()
812 S1 = Z2Cubed.multiply(Y1); in add()
892 ECFieldElement Y1 = this.y; in twice() local
893 if (Y1.isZero()) in twice()
[all …]
/external/llvm/test/Transforms/BBVectorize/X86/
Dsimple.ll8 %Y1 = fmul double %X1, %A1
10 %Z1 = fadd double %Y1, %B1
27 %Y1 = fmul double %X1, %A1
29 %Z1 = fadd double %Y1, %B1
31 %W1 = fadd double %Y1, %Z1
47 ; CHECK: %Y1 = fmul <2 x double> %X1, %X1.v.i0.2
48 ; CHECK: %Z1 = fadd <2 x double> %Y1, %X1.v.i1.2
49 ; CHECK: %W1 = fadd <2 x double> %Y1, %Z1
63 %Y1 = fmul double %X1, %A1
66 %Z2 = fadd double %Y1, %B2
[all …]
Dsimple-int.ll13 %Y1 = call double @llvm.fma.f64(double %X1, double %A1, double %C1)
15 %Z1 = fadd double %Y1, %B1
27 %Y1 = call double @llvm.fmuladd.f64(double %X1, double %A1, double %C1)
29 %Z1 = fadd double %Y1, %B1
41 %Y1 = call double @llvm.cos.f64(double %X1)
43 %Z1 = fadd double %Y1, %B1
55 %Y1 = call double @llvm.powi.f64(double %X1, i32 %P)
57 %Z1 = fadd double %Y1, %B1
70 %Y1 = call double @llvm.powi.f64(double %X1, i32 %P)
72 %Z1 = fadd double %Y1, %B1
/external/rust/crates/criterion-plot/src/
Dfilledcurve.rs104 pub struct FilledCurve<X, Y1, Y2> {
108 pub y1: Y1,
113 impl<X, Y1, Y2> traits::Plot<FilledCurve<X, Y1, Y2>> for Figure
117 Y1: IntoIterator,
118 Y1::Item: Data,
124 fn plot<F>(&mut self, fc: FilledCurve<X, Y1, Y2>, configure: F) -> &mut Figure in plot() argument
/external/mesa3d/src/amd/addrlib/src/gfx10/
Dgfx10SwizzlePattern.h3745 …{X0, X1, X2, X3, Y0, Y1, Y2, …
3746 …{0, X0, X1, X2, Y0, Y1, Y2, …
3747 …{0, 0, X0, X1, Y0, Y1, Y2, …
3748 …{0, 0, 0, X0, Y0, Y1, X1, …
3749 …{0, 0, 0, 0, Y0, Y1, X0, …
3750 …{X0, X1, X2, Y1, Y0, Y2, X3, …
3751 … 0, X0, Y0, X1, X2, Y1, }, // 6
3752 … 0, 0, X0, Y0, X1, Y1, }, // 7
3753 …{X0, Y0, X1, Y1, X2, Y2, X3, …
3754 …{0, X0, Y0, X1, Y1, X2, Y2, …
[all …]
/external/llvm-project/clang/test/CXX/temp/temp.param/
Dp12.cpp2 template<typename> struct Y1; // expected-note{{too few template parameters in template template ar…
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 cor…
/external/clang/test/CXX/temp/temp.param/
Dp12.cpp2 template<typename> struct Y1; // expected-note{{too few template parameters in template template ar…
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 cor…
/external/llvm/unittests/IR/
DDominatorTreeTest.cpp38 Instruction *Y1 = &*BBI++; in runOnFunction() local
114 EXPECT_FALSE(DT->dominates(Y1, Y1)); in runOnFunction()
115 EXPECT_TRUE(DT->dominates(Y1, Y2)); in runOnFunction()
116 EXPECT_FALSE(DT->dominates(Y2, Y1)); in runOnFunction()
135 EXPECT_TRUE(DT->dominates(Y1, Y6)); in runOnFunction()
139 EXPECT_FALSE(DT->dominates(Y6, Y1)); in runOnFunction()
142 EXPECT_FALSE(DT->dominates(Y1, BB0)); in runOnFunction()
143 EXPECT_TRUE(DT->dominates(Y1, BB1)); in runOnFunction()
144 EXPECT_TRUE(DT->dominates(Y1, BB2)); in runOnFunction()
145 EXPECT_TRUE(DT->dominates(Y1, BB3)); in runOnFunction()
[all …]
/external/llvm/unittests/Analysis/
DUnrollAnalyzer.cpp104 Instruction *Y1 = &*BBI++; in TEST() local
108 auto I1 = SimplifiedValuesVector[0].find(Y1); in TEST()
119 I1 = SimplifiedValuesVector[TripCount - 1].find(Y1); in TEST()
167 Instruction *Y1 = &*BBI; in TEST() local
175 auto I1 = SimplifiedValuesVector[0].find(Y1); in TEST()
212 Instruction *Y1 = &*BBI++; in TEST() local
217 auto I1 = SimplifiedValuesVector[5].find(Y1); in TEST()
259 Instruction *Y1 = &*BBI; in TEST() local
262 auto I1 = SimplifiedValuesVector[5].find(Y1); in TEST()
305 Instruction *Y1 = &*BBI++; in TEST() local
[all …]
/external/llvm-project/llvm/unittests/Analysis/
DUnrollAnalyzerTest.cpp104 Instruction *Y1 = &*BBI++; in TEST() local
108 auto I1 = SimplifiedValuesVector[0].find(Y1); in TEST()
119 I1 = SimplifiedValuesVector[TripCount - 1].find(Y1); in TEST()
167 Instruction *Y1 = &*BBI; in TEST() local
175 auto I1 = SimplifiedValuesVector[0].find(Y1); in TEST()
212 Instruction *Y1 = &*BBI++; in TEST() local
217 auto I1 = SimplifiedValuesVector[5].find(Y1); in TEST()
259 Instruction *Y1 = &*BBI; in TEST() local
262 auto I1 = SimplifiedValuesVector[5].find(Y1); in TEST()
305 Instruction *Y1 = &*BBI++; in TEST() local
[all …]
/external/clang/test/CXX/class.access/class.friend/
Dp3-cxx0x.cpp7 class Y1 { }; class
9 X0<Y1> x0a;
10 X0<Y1 *> x0b;
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
/external/llvm-project/clang/test/CXX/class.access/class.friend/
Dp3-cxx0x.cpp7 class Y1 { }; class
9 X0<Y1> x0a;
10 X0<Y1 *> x0b;
29 X1<Y1> x1c; // expected-note{{in instantiation of template class 'X1<Y1>' requested here}}
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
DSecP256K1Point.java44 … SecP256K1FieldElement X1 = (SecP256K1FieldElement)this.x, Y1 = (SecP256K1FieldElement)this.y; in add() local
80 S1 = Y1.x; in add()
91 SecP256K1Field.multiply(S1, Y1.x, S1); in add()
162 SecP256K1FieldElement Y1 = (SecP256K1FieldElement)this.y; in twice() local
163 if (Y1.isZero()) in twice()
173 SecP256K1Field.square(Y1.x, Y1Squared); in twice()
203 SecP256K1Field.twice(Y1.x, Z3.x); in twice()
227 ECFieldElement Y1 = this.y; in twicePlus() local
228 if (Y1.isZero()) in twicePlus()
DSecP192K1Point.java44 … SecP192K1FieldElement X1 = (SecP192K1FieldElement)this.x, Y1 = (SecP192K1FieldElement)this.y; in add() local
80 S1 = Y1.x; in add()
91 SecP192K1Field.multiply(S1, Y1.x, S1); in add()
162 SecP192K1FieldElement Y1 = (SecP192K1FieldElement)this.y; in twice() local
163 if (Y1.isZero()) in twice()
173 SecP192K1Field.square(Y1.x, Y1Squared); in twice()
203 SecP192K1Field.twice(Y1.x, Z3.x); in twice()
227 ECFieldElement Y1 = this.y; in twicePlus() local
228 if (Y1.isZero()) in twicePlus()
DSecP224K1Point.java44 … SecP224K1FieldElement X1 = (SecP224K1FieldElement)this.x, Y1 = (SecP224K1FieldElement)this.y; in add() local
80 S1 = Y1.x; in add()
91 SecP224K1Field.multiply(S1, Y1.x, S1); in add()
162 SecP224K1FieldElement Y1 = (SecP224K1FieldElement)this.y; in twice() local
163 if (Y1.isZero()) in twice()
173 SecP224K1Field.square(Y1.x, Y1Squared); in twice()
203 SecP224K1Field.twice(Y1.x, Z3.x); in twice()
227 ECFieldElement Y1 = this.y; in twicePlus() local
228 if (Y1.isZero()) in twicePlus()
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/custom/sec/
DSecP256K1Point.java48 … SecP256K1FieldElement X1 = (SecP256K1FieldElement)this.x, Y1 = (SecP256K1FieldElement)this.y; in add() local
84 S1 = Y1.x; in add()
95 SecP256K1Field.multiply(S1, Y1.x, S1); in add()
166 SecP256K1FieldElement Y1 = (SecP256K1FieldElement)this.y; in twice() local
167 if (Y1.isZero()) in twice()
177 SecP256K1Field.square(Y1.x, Y1Squared); in twice()
207 SecP256K1Field.twice(Y1.x, Z3.x); in twice()
231 ECFieldElement Y1 = this.y; in twicePlus() local
232 if (Y1.isZero()) in twicePlus()
DSecP224K1Point.java48 … SecP224K1FieldElement X1 = (SecP224K1FieldElement)this.x, Y1 = (SecP224K1FieldElement)this.y; in add() local
84 S1 = Y1.x; in add()
95 SecP224K1Field.multiply(S1, Y1.x, S1); in add()
166 SecP224K1FieldElement Y1 = (SecP224K1FieldElement)this.y; in twice() local
167 if (Y1.isZero()) in twice()
177 SecP224K1Field.square(Y1.x, Y1Squared); in twice()
207 SecP224K1Field.twice(Y1.x, Z3.x); in twice()
231 ECFieldElement Y1 = this.y; in twicePlus() local
232 if (Y1.isZero()) in twicePlus()
DSecP192K1Point.java48 … SecP192K1FieldElement X1 = (SecP192K1FieldElement)this.x, Y1 = (SecP192K1FieldElement)this.y; in add() local
84 S1 = Y1.x; in add()
95 SecP192K1Field.multiply(S1, Y1.x, S1); in add()
166 SecP192K1FieldElement Y1 = (SecP192K1FieldElement)this.y; in twice() local
167 if (Y1.isZero()) in twice()
177 SecP192K1Field.square(Y1.x, Y1Squared); in twice()
207 SecP192K1Field.twice(Y1.x, Z3.x); in twice()
231 ECFieldElement Y1 = this.y; in twicePlus() local
232 if (Y1.isZero()) in twicePlus()
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/math/ec/custom/sec/
DSecP192K1Point.java48 … SecP192K1FieldElement X1 = (SecP192K1FieldElement)this.x, Y1 = (SecP192K1FieldElement)this.y; in add() local
84 S1 = Y1.x; in add()
95 SecP192K1Field.multiply(S1, Y1.x, S1); in add()
166 SecP192K1FieldElement Y1 = (SecP192K1FieldElement)this.y; in twice() local
167 if (Y1.isZero()) in twice()
177 SecP192K1Field.square(Y1.x, Y1Squared); in twice()
207 SecP192K1Field.twice(Y1.x, Z3.x); in twice()
231 ECFieldElement Y1 = this.y; in twicePlus() local
232 if (Y1.isZero()) in twicePlus()

12345678