Home
last modified time | relevance | path

Searched refs:yx (Results 1 – 25 of 254) sorted by relevance

1234567891011

/external/fonttools/Lib/fontTools/misc/
Dtransform.py88 def __init__(self, xx=1, xy=0, yx=0, yy=1, dx=0, dy=0): argument
99 self.__affine = xx, xy, yx, yy, dx, dy
111 xx, xy, yx, yy, dx, dy = self.__affine
112 return (xx*x + yx*y + dx, xy*x + yy*y + dy)
123 xx, xy, yx, yy, dx, dy = self.__affine
124 return [(xx*x + yx*y + dx, xy*x + yy*y + dy) for x, y in points]
238 xx, xy, yx, yy, dx, dy = self.__affine
239 det = xx*yy - yx*xy
240 xx, xy, yx, yy = yy/det, -xy/det, -yx/det, xx/det
241 dx, dy = -xx*dx - yx*dy, -xy*dx - yy*dy
[all …]
/external/freetype/src/base/
Dftcalc.c664 FT_Fixed xx, xy, yx, yy; in FT_Matrix_Multiply() local
671 FT_MulFix( a->xy, b->yx ) ); in FT_Matrix_Multiply()
674 yx = ADD_LONG( FT_MulFix( a->yx, b->xx ), in FT_Matrix_Multiply()
675 FT_MulFix( a->yy, b->yx ) ); in FT_Matrix_Multiply()
676 yy = ADD_LONG( FT_MulFix( a->yx, b->xy ), in FT_Matrix_Multiply()
681 b->yx = yx; in FT_Matrix_Multiply()
699 FT_MulFix( matrix->xy, matrix->yx ); in FT_Matrix_Invert()
705 matrix->yx = - FT_DivFix( matrix->yx, delta ); in FT_Matrix_Invert()
724 FT_Fixed xx, xy, yx, yy; in FT_Matrix_Multiply_Scaled() local
733 FT_MulDiv( a->xy, b->yx, val ) ); in FT_Matrix_Multiply_Scaled()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Transforms/InstSimplify/
Dsdiv.ll27 %yx = sub nsw i32 %y, %x
28 %div = sdiv i32 %xy, %yx
37 %yx = sub nsw <2 x i32> %y, %x
38 %div = sdiv <2 x i32> %xy, %yx
80 %yx = sub i32 %y, %x ; not nsw
81 %div = sdiv i32 %xy, %yx
93 %yx = sub nsw i32 %y, %x
94 %div = sdiv i32 %xy, %yx
106 %yx = sub i32 %y, %x ; not nsw
107 %div = sdiv i32 %xy, %yx
[all …]
Dadd.ll36 %yx = sub i8 %y, %x
37 %r = add i8 %xy, %yx
46 %yx = sub <2 x i8> %y, %x
47 %r = add <2 x i8> %yx, %xy
Dsrem.ll27 %yx = sub i32 %y, %x
28 %rem = srem i32 %xy, %yx
37 %yx = sub <2 x i32> %y, %x
38 %rem = srem <2 x i32> %xy, %yx
/external/python/cpython2/Python/
Dpymath.c37 double yx; in hypot() local
49 yx = y/x; in hypot()
50 return x*sqrt(1.+yx*yx); in hypot()
/external/python/cpython3/Python/
Dpymath.c39 double yx; in hypot() local
51 yx = y/x; in hypot()
52 return x*sqrt(1.+yx*yx); in hypot()
/external/deqp-deps/glslang/Test/
Dspv.accessChain.frag39 OutColor += i.color.yx[comp];
44 OutColor.xy += i.color.yxz.yx;
49 OutColor += i.color.yzx.yx.x.x;
64 OutColor.zxy.yx += i.color.xy;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
DECFieldElement.java186 … BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); in multiplyMinusProduct() local
188 BigInteger xy = xx.multiply(yx); in multiplyMinusProduct()
194 … BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); in multiplyPlusProduct() local
196 BigInteger xy = xx.multiply(yx); in multiplyPlusProduct()
217 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); in squareMinusProduct() local
219 BigInteger xy = xx.multiply(yx); in squareMinusProduct()
225 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); in squarePlusProduct() local
227 BigInteger xy = xx.multiply(yx); in squarePlusProduct()
763 LongArray ax = this.x, bx = ((F2m)b).x, xx = ((F2m)x).x, yx = ((F2m)y).x; in multiplyPlusProduct() local
766 LongArray xy = xx.multiply(yx, m, ks); in multiplyPlusProduct()
[all …]
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/ec/
DECFieldElement.java196 … BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); in multiplyMinusProduct() local
198 BigInteger xy = xx.multiply(yx); in multiplyMinusProduct()
204 … BigInteger ax = this.x, bx = b.toBigInteger(), xx = x.toBigInteger(), yx = y.toBigInteger(); in multiplyPlusProduct() local
206 BigInteger xy = xx.multiply(yx); in multiplyPlusProduct()
227 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); in squareMinusProduct() local
229 BigInteger xy = xx.multiply(yx); in squareMinusProduct()
235 BigInteger ax = this.x, xx = x.toBigInteger(), yx = y.toBigInteger(); in squarePlusProduct() local
237 BigInteger xy = xx.multiply(yx); in squarePlusProduct()
777 LongArray ax = this.x, bx = ((F2m)b).x, xx = ((F2m)x).x, yx = ((F2m)y).x; in multiplyPlusProduct() local
780 LongArray xy = xx.multiply(yx, m, ks); in multiplyPlusProduct()
[all …]
/external/clang/utils/ABITest/
DMakefile.test.common31 test.%.report: temps/test.%.xx.diff temps/test.%.xy.diff temps/test.%.yx.diff temps/test.%.yy.diff
56 test.%.build: temps/test.%.ref temps/test.%.xx temps/test.%.xy temps/test.%.yx temps/test.%.yy temp…
71 .PRECIOUS: temps/test.%.yx.diff
72 temps/test.%.yx.diff: temps/test.%.ref.out temps/test.%.yx.out
100 .PRECIOUS: temps/test.%.yx
101 temps/test.%.yx: temps/test.%.driver.ref.o temps/test.%.a.y.o temps/test.%.b.x.o
/external/skqp/src/pathops/
DSkPathOpsPoint.h64 double yx = fY * a.fX; in crossCheck() local
65 return AlmostEqualUlps(xy, yx) ? 0 : xy - yx; in crossCheck()
71 double yx = fY * a.fX; in crossNoNormalCheck() local
72 return AlmostEqualUlpsNoNormalCheck(xy, yx) ? 0 : xy - yx; in crossNoNormalCheck()
/external/skia/src/pathops/
DSkPathOpsPoint.h64 double yx = fY * a.fX; in crossCheck() local
65 return AlmostEqualUlps(xy, yx) ? 0 : xy - yx; in crossCheck()
71 double yx = fY * a.fX; in crossNoNormalCheck() local
72 return AlmostEqualUlpsNoNormalCheck(xy, yx) ? 0 : xy - yx; in crossNoNormalCheck()
/external/honggfuzz/examples/apache-httpd/corpus_http2/
Da1177ba81969c0e5fcdf2629d2e1b255.000015a5.honggfuzz.cov29 ��%��]�������e��}�Ԇ��M�Bo����p�]�c�������[���yx[�n]�m�iN%ѝ� �3w��Hώ�~/S�;yc�R�۔�:saӆw…
42 ��%��]�������e��}�Ԇ��M�Bo����p�]�c�������[���yx[�n]�m�iN%ѝ� �3w��Hώ�~/S�;yc�R�۔�:saӆw…
47 …d���G�?��%�v]s7rR�ܷ�%��]�������e��}�Ԇ��M�Bo����p�]�c�������[���yx[�n]�m�iN%ѝ� �3w��H…
52 …d���G�?��%�v]s7rR�ܷ�%��]�������e��}�Ԇ��M�Bo����p�]�c�������[���yx[�n]�m�iN%ѝ� �3w��H…
/external/swiftshader/third_party/llvm-7.0/llvm/test/FileCheck/
Dverbose.txt91 CHECK-NOT: {{z}}yx
101 VV-NEXT: {{C}}HECK-NOT: {{[{][{]z[}][}]yx$}}
108 VV-NEXT: {{C}}HECK-NOT: {{[{][{]z[}][}]yx$}}
/external/grpc-grpc/test/core/slice/percent_encode_corpus/
D55bb859f3942c462b03b7cbcf22ab4a0ac9705cf1 .yx.yxxxyzxyyzxy
/external/autotest/client/deps/webgl_mpd/src/resources/
DJ3DIMath.js713 var yx = upx;
719 xy = -yx * zz + yz * zx;
720 xz = yx * zy - yy * zx;
723 yx = zy * xz - zz * xy;
725 yx = zx * xy - zy * xx;
737 mag = Math.sqrt(yx * yx + yy * yy + yz * yz);
739 yx /= mag;
749 matrix.$matrix.m21 = yx;
/external/tensorflow/tensorflow/compiler/xla/tests/
Dbroadcast_test.cc191 Array2D<float> yx(3, r1_size); in TEST_F() local
194 yx(y, x) = input_data[x]; in TEST_F()
197 expected.FillWithYX(yx); in TEST_F()
/external/e2fsprogs/tests/f_h_normal/
Dscript1 if test "$HTREE"x = yx ; then
/external/e2fsprogs/tests/f_h_badnode/
Dscript1 if test "$HTREE"x = yx ; then
/external/e2fsprogs/tests/f_h_badroot/
Dscript1 if test "$HTREE"x = yx ; then
/external/e2fsprogs/tests/f_h_unsigned/
Dscript1 if test "$HTREE"x = yx ; then
/external/e2fsprogs/tests/f_h_reindex/
Dscript1 if test "$HTREE"x = yx ; then
/external/freetype/src/cff/
Dcffobjs.c752 : FT_ABS( matrix->yx ); in cff_face_init()
759 matrix->yx = FT_DivFix( matrix->yx, temp ); in cff_face_init()
823 : FT_ABS( matrix->yx ); in cff_face_init()
831 matrix->yx = FT_DivFix( matrix->yx, temp ); in cff_face_init()
/external/swiftshader/third_party/LLVM/test/CodeGen/CellSPU/useful-harnesses/
Dvecoperations.c127 v2i64 c2 = a.yx; in v2i64_shuffle()
132 v2f64 c2 = a.yx; in v2f64_shuffle()

1234567891011