/device/google/contexthub/firmware/src/algos/ |
vec.c | 21 void findOrthogonalVector( float inX, float inY, float inZ, float *outX, float *outY, float *outZ) { 26 if (fabsf(inX) <= fabsf(inY) && fabsf(inX) <= fabsf(inZ)) { 29 z = -inY; 30 } else if (fabsf(inY) <= fabsf(inZ)) { 35 x = inY;
|
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSResizeTest.java | 32 private final int inY = 157; 160 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f); 163 testResize(inX, inY, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f); 166 testResize(inX, inY, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f); 169 testResize(inX, inY, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f); 173 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f); 176 testResize(inX, inY, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f); 179 testResize(inX, inY, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f); 182 testResize(inX, inY, Element.DataType.UNSIGNED_8, 1, 2.f, 2.f); 186 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 0.5f, 2.f) [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
IntrinsicResize.java | 25 static final int inY = 157; 186 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f); 190 testResize(inX, inY, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f); 194 testResize(inX, inY, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f); 198 testResize(inX, inY, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f); 203 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f); 207 testResize(inX, inY, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f); 211 testResize(inX, inY, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f); 215 testResize(inX, inY, Element.DataType.UNSIGNED_8, 1, 2.f, 2.f); 220 testResize(inX, inY, Element.DataType.UNSIGNED_8, 4, 0.5f, 2.f) [all...] |
CoreMathVerifier.java | 689 Target.Floaty inY = t.newFloaty(y); 691 Math.hypot(inX.mid(), inY.mid()), 692 Math.hypot(inX.min(), inY.min()), 693 Math.hypot(inX.min(), inY.max()), 694 Math.hypot(inX.max(), inY.min()), 695 Math.hypot(inX.max(), inY.max())); 700 Target.Floaty inY = t.new32(y); 702 hypot(inX.mid32(), inY.mid32()), 703 hypot(inX.min32(), inY.min32()), 704 hypot(inX.min32(), inY.max32()) [all...] |
/device/google/contexthub/firmware/inc/algos/ |
vec.h | 92 void findOrthogonalVector( float inX, float inY, float inZ,
|
/prebuilts/go/darwin-x86/src/crypto/elliptic/ |
p224.go | 651 func p224ScalarMult(outX, outY, outZ, inX, inY, inZ *p224FieldElement, scalar []byte) { 663 p224AddJacobian(&xx, &yy, &zz, inX, inY, inZ, outX, outY, outZ)
|
/prebuilts/go/linux-x86/src/crypto/elliptic/ |
p224.go | 651 func p224ScalarMult(outX, outY, outZ, inX, inY, inZ *p224FieldElement, scalar []byte) { 663 p224AddJacobian(&xx, &yy, &zz, inX, inY, inZ, outX, outY, outZ)
|