OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:outCosptr
(Results
1 - 2
of
2
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestNativeSincos.java
39
public Target.Floaty
outCosptr
;
46
Allocation
outCosptr
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
48
script.set_gAllocOutCosptr(
outCosptr
);
50
verifyResultsNativeSincosFloatFloatFloat(inV,
outCosptr
, out, false);
55
Allocation
outCosptr
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
57
scriptRelaxed.set_gAllocOutCosptr(
outCosptr
);
59
verifyResultsNativeSincosFloatFloatFloat(inV,
outCosptr
, out, true);
65
private void verifyResultsNativeSincosFloatFloatFloat(Allocation inV, Allocation
outCosptr
, Allocation out, boolean relaxed) {
69
outCosptr
.copyTo(arrayOutCosptr);
82
if (!args.
outCosptr
.couldBe(arrayOutCosptr[i * 1 + j], 0.0005))
[
all
...]
TestSincos.java
39
public Target.Floaty
outCosptr
;
46
Allocation
outCosptr
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
48
script.set_gAllocOutCosptr(
outCosptr
);
50
verifyResultsSincosFloatFloatFloat(inV,
outCosptr
, out, false);
55
Allocation
outCosptr
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
57
scriptRelaxed.set_gAllocOutCosptr(
outCosptr
);
59
verifyResultsSincosFloatFloatFloat(inV,
outCosptr
, out, true);
65
private void verifyResultsSincosFloatFloatFloat(Allocation inV, Allocation
outCosptr
, Allocation out, boolean relaxed) {
69
outCosptr
.copyTo(arrayOutCosptr);
82
if (!args.
outCosptr
.couldBe(arrayOutCosptr[i * 1 + j]))
[
all
...]
Completed in 796 milliseconds