OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inX
(Results
1 - 5
of
5
) sorted by null
/cts/tests/tests/rscpp/src/android/cts/rscpp/
RSResizeTest.java
31
private final int
inX
= 307;
95
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f);
98
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f);
101
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f);
104
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f);
108
testResize(
inX
, inX, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f)
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
IntrinsicResize.java
24
static final int
inX
= 307;
104
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f);
108
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f);
112
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f);
116
testResize(
inX
,
inX
, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f);
121
testResize(
inX
, inX, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f)
[
all
...]
CoreMathVerifier.java
688
Target.Floaty
inX
= t.newFloaty(x);
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()));
699
Target.Floaty
inX
= t.new32(x);
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)) {
35
z = -
inX
;
38
y = -
inX
;
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 248 milliseconds