OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:outFloor
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestFract.rs
25
float
outFloor
= 0;
26
float out = fract(inV, &
outFloor
);
27
rsSetElementAt_float(gAllocOutFloor,
outFloor
, x);
32
float2
outFloor
= 0;
33
float2 out = fract(inV, &
outFloor
);
34
rsSetElementAt_float2(gAllocOutFloor,
outFloor
, x);
39
float3
outFloor
= 0;
40
float3 out = fract(inV, &
outFloor
);
41
rsSetElementAt_float3(gAllocOutFloor,
outFloor
, x);
46
float4
outFloor
= 0
[
all
...]
TestFract.java
49
public Target.Floaty
outFloor
;
56
Allocation
outFloor
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
58
script.set_gAllocOutFloor(
outFloor
);
60
verifyResultsFractFloatFloatFloat(inV,
outFloor
, out, false);
61
outFloor
.destroy();
67
Allocation
outFloor
= Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTSIZE);
69
scriptRelaxed.set_gAllocOutFloor(
outFloor
);
71
verifyResultsFractFloatFloatFloat(inV,
outFloor
, out, true);
72
outFloor
.destroy();
80
private void verifyResultsFractFloatFloatFloat(Allocation inV, Allocation
outFloor
, Allocation out, boolean relaxed)
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java
[
all
...]
Completed in 59 milliseconds