OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inY
(Results
1 - 5
of
5
) sorted by null
/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;
189
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f);
193
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f);
197
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f);
201
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f);
206
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f);
210
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f);
214
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f);
218
testResize(inX,
inY
, Element.DataType.UNSIGNED_8, 1, 2.f, 2.f);
223
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/os/algos/common/math/
vec.c
20
void findOrthogonalVector(float inX, float
inY
, float inZ, float *outX,
28
if (fabsf(inX) <= fabsf(
inY
) && fabsf(inX) <= fabsf(inZ)) {
31
z = -
inY
;
32
} else if (fabsf(
inY
) <= fabsf(inZ)) {
37
x =
inY
;
vec.h
157
// Finds a vector orthogonal to the vector [inX,
inY
, inZ] and returns
159
// that the smallest component of [inX,
inY
, inZ] is set to zero in the
162
void findOrthogonalVector(float inX, float
inY
, float inZ, float *outX,
Completed in 133 milliseconds