OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inMaxValue
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestClamp.rs
27
float
inMaxValue
= rsGetElementAt_float(gAllocInMaxValue, x);
28
return clamp(inValue, inMinValue,
inMaxValue
);
33
float2
inMaxValue
= rsGetElementAt_float2(gAllocInMaxValue, x);
34
return clamp(inValue, inMinValue,
inMaxValue
);
39
float3
inMaxValue
= rsGetElementAt_float3(gAllocInMaxValue, x);
40
return clamp(inValue, inMinValue,
inMaxValue
);
45
float4
inMaxValue
= rsGetElementAt_float4(gAllocInMaxValue, x);
46
return clamp(inValue, inMinValue,
inMaxValue
);
51
float
inMaxValue
= rsGetElementAt_float(gAllocInMaxValue, x);
52
return clamp(inValue, inMinValue,
inMaxValue
);
[
all
...]
TestClamp.java
50
public float
inMaxValue
;
57
Allocation
inMaxValue
= createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xdcebf6e6c180322dl, false);
58
enforceOrdering(inMinValue,
inMaxValue
);
62
script.set_gAllocInMaxValue(
inMaxValue
);
64
verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue,
inMaxValue
, out, false);
72
scriptRelaxed.set_gAllocInMaxValue(
inMaxValue
);
74
verifyResultsClampFloatFloatFloatFloat(inValue, inMinValue,
inMaxValue
, out, true);
81
inMaxValue
.destroy();
84
private void verifyResultsClampFloatFloatFloatFloat(Allocation inValue, Allocation inMinValue, Allocation
inMaxValue
, Allocation out, boolean relaxed) {
93
inMaxValue
.copyTo(arrayInMaxValue)
[
all
...]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java
[
all
...]
Completed in 486 milliseconds