OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inAmount
(Results
1 - 3
of
3
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestMix.rs
27
float
inAmount
= rsGetElementAt_float(gAllocInAmount, x);
28
return mix(inStart, inStop,
inAmount
);
33
float2
inAmount
= rsGetElementAt_float2(gAllocInAmount, x);
34
return mix(inStart, inStop,
inAmount
);
39
float3
inAmount
= rsGetElementAt_float3(gAllocInAmount, x);
40
return mix(inStart, inStop,
inAmount
);
45
float4
inAmount
= rsGetElementAt_float4(gAllocInAmount, x);
46
return mix(inStart, inStop,
inAmount
);
51
float
inAmount
= rsGetElementAt_float(gAllocInAmount, x);
52
return mix(inStart, inStop,
inAmount
);
[
all
...]
TestMix.java
40
public float
inAmount
;
47
Allocation
inAmount
= createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xc1c14e5d52dc3fe5l, false);
51
script.set_gAllocInAmount(
inAmount
);
53
verifyResultsMixFloatFloatFloatFloat(inStart, inStop,
inAmount
, out, false);
60
scriptRelaxed.set_gAllocInAmount(
inAmount
);
62
verifyResultsMixFloatFloatFloatFloat(inStart, inStop,
inAmount
, out, true);
68
private void verifyResultsMixFloatFloatFloatFloat(Allocation inStart, Allocation inStop, Allocation
inAmount
, Allocation out, boolean relaxed) {
74
inAmount
.copyTo(arrayInAmount);
83
args.
inAmount
= arrayInAmount[i];
102
message.append("Input
inAmount
: ")
[
all
...]
CoreMathVerifier.java
[
all
...]
Completed in 195 milliseconds