OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:outcosptr
(Results
1 - 5
of
5
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestNativeSincos.rs
25
float
outCosptr
= 0;
26
float out = native_sincos(inV, &
outCosptr
);
27
rsSetElementAt_float(gAllocOutCosptr,
outCosptr
, x);
32
float2
outCosptr
= 0;
33
float2 out = native_sincos(inV, &
outCosptr
);
34
rsSetElementAt_float2(gAllocOutCosptr,
outCosptr
, x);
39
float3
outCosptr
= 0;
40
float3 out = native_sincos(inV, &
outCosptr
);
41
rsSetElementAt_float3(gAllocOutCosptr,
outCosptr
, x);
46
float4
outCosptr
= 0
[
all
...]
TestSincos.rs
25
float
outCosptr
= 0;
26
float out = sincos(inV, &
outCosptr
);
27
rsSetElementAt_float(gAllocOutCosptr,
outCosptr
, x);
32
float2
outCosptr
= 0;
33
float2 out = sincos(inV, &
outCosptr
);
34
rsSetElementAt_float2(gAllocOutCosptr,
outCosptr
, x);
39
float3
outCosptr
= 0;
40
float3 out = sincos(inV, &
outCosptr
);
41
rsSetElementAt_float3(gAllocOutCosptr,
outCosptr
, x);
46
float4
outCosptr
= 0
[
all
...]
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
...]
CoreMathVerifier.java
[
all
...]
Completed in 249 milliseconds