Searched refs:scl (Results 1 - 25 of 86) sorted by relevance

1234

/external/llvm/test/MC/COFF/
H A Deh-frame.s4 .scl 2;
H A Dseh-align1.s61 .def smallFunc; .scl 2; .type 32; .endef
H A Dseh-stackalloc-zero.s6 .def smallFunc; .scl 2; .type 32; .endef
H A Ddiff.s5 .scl 2;
14 .scl 2;
22 .scl 2;
H A Dinvalid-scl-range.s6 .scl 1337
7 .scl 9001
H A Dinvalid-scl.s5 .scl 1337
6 .scl 1337
H A Dseh-section.s65 .def foo; .scl 2; .type 32; .endef
80 .def bar; .scl 2; .type 32; .endef
95 .def baz; .scl 2; .type 32; .endef
H A Dsimple-fixups.s9 .scl 2;
23 .scl 2;
36 .scl 2;
H A Dseh-align2.s66 .def func; .scl 2; .type 32; .endef
H A Dseh-align3.s68 .def func; .scl 2; .type 32; .endef
H A Dseh.s125 .def func; .scl 2; .type 32; .endef
155 .def smallFunc; .scl 2; .type 32; .endef
H A Dbasic-coff-64.s7 .scl 2;
H A Dbasic-coff.s7 .scl 2;
H A Dseh-linkonce.s5 .scl 2;
H A Dsymbol-alias.s9 .scl 2;
H A Dsymbol-fragment-offset-64.s7 .scl 2;
H A Dsymbol-fragment-offset.s7 .scl 2;
H A Dweak.s8 .scl 2;
/external/libgdx/gdx/src/com/badlogic/gdx/math/
H A DBezier.java36 return out.set(p0).scl(1f - t).add(tmp.set(p1).scl(t)); // Could just use lerp...
62 return out.set(p0).scl(dt * dt).add(tmp.set(p1).scl(2 * dt * t)).add(tmp.set(p2).scl(t * t));
77 return out.set(p1).sub(p0).scl(2).scl(1 - t).add(tmp.set(p2).sub(p1).scl(t).scl(2));
95 return out.set(p0).scl(dt
[all...]
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
H A DAffine2Test.java36 Vector2 scl = new Vector2(0.42f, 1.19f);
57 mat1.setToScaling(scl);
58 checkEqual(mat1, new float[] {scl.x, 0, 0, 0, scl.y, 0, 0, 0, 1});
59 afn1.setToScaling(scl);
77 afn1.setToTrnRotScl(trn, rot, scl);
78 afn2.setToTrnRotRadScl(trn, MathUtils.degreesToRadians * rot, scl);
80 afn2.setToTranslation(trn).rotate(rot).scale(scl);
84 afn1.setToTrnRotScl(trn, 0, scl);
85 afn2.setToTrnScl(trn, scl);
[all...]
/external/llvm/test/tools/llvm-objdump/Inputs/
H A Dwin64-unwind.exe.coff-x86_64.asm3 .def func; .scl 2; .type 32; .endef
33 .def smallFunc; .scl 2; .type 32; .endef
41 .def allocFunc; .scl 2; .type 32; .endef
/external/opencv3/3rdparty/openexr/Imath/
H A DImathMatrixAlgo.h132 Vec3<T> &scl,
144 Vec3<T> &scl,
163 Vec3<T> &scl,
207 (const T &scl,
307 Vec2<T> &scl,
319 Vec2<T> &scl,
333 Vec2<T> &scl,
349 (const T &scl,
365 extractScaling (const Matrix44<T> &mat, Vec3<T> &scl, bool exc) argument
370 if (! extractAndRemoveScalingAndShear (M, scl, sh
381 Vec3<T> scl; local
403 Vec3<T> scl; local
422 extractScalingAndShear(const Matrix44<T> &mat, Vec3<T> &scl, Vec3<T> &shr, bool exc) argument
438 Vec3<T> scl; local
453 Vec3<T> scl; local
465 Vec3<T> scl; local
477 extractAndRemoveScalingAndShear(Matrix44<T> &mat, Vec3<T> &scl, Vec3<T> &shr, bool exc) argument
796 checkForZeroScaleInRow(const T& scl, const Vec3<T> &row, bool exc ) argument
1060 extractScaling(const Matrix33<T> &mat, Vec2<T> &scl, bool exc) argument
1076 Vec2<T> scl; local
1098 Vec2<T> scl; local
1117 extractScalingAndShear(const Matrix33<T> &mat, Vec2<T> &scl, T &shr, bool exc) argument
1132 Vec2<T> scl; local
1147 Vec2<T> scl; local
1158 extractAndRemoveScalingAndShear(Matrix33<T> &mat, Vec2<T> &scl, T &shr, bool exc) argument
1293 checkForZeroScaleInRow(const T& scl, const Vec2<T> &row, bool exc ) argument
[all...]
/external/llvm/test/MC/ARM/Windows/
H A Dinvalid-relocation.s6 .scl 2
H A Dtext-attributes.s11 .scl 2
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
H A DFirstPersonCameraController.java86 tmp.set(camera.direction).nor().scl(deltaTime * velocity);
90 tmp.set(camera.direction).nor().scl(-deltaTime * velocity);
94 tmp.set(camera.direction).crs(camera.up).nor().scl(-deltaTime * velocity);
98 tmp.set(camera.direction).crs(camera.up).nor().scl(deltaTime * velocity);
102 tmp.set(camera.up).nor().scl(deltaTime * velocity);
106 tmp.set(camera.up).nor().scl(-deltaTime * velocity);

Completed in 572 milliseconds

1234