OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outD
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestRemquo.rs
27
int
outD
= 0;
28
float out = remquo(inB, inC, &
outD
);
29
rsSetElementAt_int(gAllocOutD,
outD
, x);
35
int2
outD
= 0;
36
float2 out = remquo(inB, inC, &
outD
);
37
rsSetElementAt_int2(gAllocOutD,
outD
, x);
43
int3
outD
= 0;
44
float3 out = remquo(inB, inC, &
outD
);
45
rsSetElementAt_int3(gAllocOutD,
outD
, x);
51
int4
outD
= 0
[
all
...]
TestRemquo.java
40
public int
outD
;
48
Allocation
outD
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
51
script.set_gAllocOutD(
outD
);
53
verifyResultsRemquoFloatFloatIntFloat(inB, inC,
outD
, out, false);
58
Allocation
outD
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1), INPUTSIZE);
61
scriptRelaxed.set_gAllocOutD(
outD
);
63
verifyResultsRemquoFloatFloatIntFloat(inB, inC,
outD
, out, true);
69
private void verifyResultsRemquoFloatFloatIntFloat(Allocation inB, Allocation inC, Allocation
outD
, Allocation out, boolean relaxed) {
75
outD
.copyTo(arrayOutD);
85
args.
outD
= arrayOutD[i * 1 + j]
[
all
...]
CoreMathVerifier.java
[
all
...]
Completed in 40 milliseconds