OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:inC
(Results
1 - 7
of
7
) sorted by null
/cts/tests/tests/renderscript/src/android/renderscript/cts/
TestFma.rs
27
float
inC
= rsGetElementAt_float(gAllocInC, x);
28
return fma(inA, inB,
inC
);
33
float2
inC
= rsGetElementAt_float2(gAllocInC, x);
34
return fma(inA, inB,
inC
);
39
float3
inC
= rsGetElementAt_float3(gAllocInC, x);
40
return fma(inA, inB,
inC
);
45
float4
inC
= rsGetElementAt_float4(gAllocInC, x);
46
return fma(inA, inB,
inC
);
TestMad.rs
27
float
inC
= rsGetElementAt_float(gAllocInC, x);
28
return mad(inA, inB,
inC
);
33
float2
inC
= rsGetElementAt_float2(gAllocInC, x);
34
return mad(inA, inB,
inC
);
39
float3
inC
= rsGetElementAt_float3(gAllocInC, x);
40
return mad(inA, inB,
inC
);
45
float4
inC
= rsGetElementAt_float4(gAllocInC, x);
46
return mad(inA, inB,
inC
);
TestRemquo.rs
26
float
inC
= rsGetElementAt_float(gAllocInC, x);
28
float out = remquo(inB,
inC
, &outD);
34
float2
inC
= rsGetElementAt_float2(gAllocInC, x);
36
float2 out = remquo(inB,
inC
, &outD);
42
float3
inC
= rsGetElementAt_float3(gAllocInC, x);
44
float3 out = remquo(inB,
inC
, &outD);
50
float4
inC
= rsGetElementAt_float4(gAllocInC, x);
52
float4 out = remquo(inB,
inC
, &outD);
TestFma.java
40
public float
inC
;
47
Allocation
inC
= createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x5f6b3ee0c3466c4l, false);
51
script.set_gAllocInC(
inC
);
53
verifyResultsFmaFloatFloatFloatFloat(inA, inB,
inC
, out, false);
60
scriptRelaxed.set_gAllocInC(
inC
);
62
verifyResultsFmaFloatFloatFloatFloat(inA, inB,
inC
, out, true);
68
private void verifyResultsFmaFloatFloatFloatFloat(Allocation inA, Allocation inB, Allocation
inC
, Allocation out, boolean relaxed) {
74
inC
.copyTo(arrayInC);
83
args.
inC
= arrayInC[i];
102
message.append("Input
inC
: ")
[
all
...]
TestMad.java
40
public float
inC
;
47
Allocation
inC
= createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xb3b9b8429c37eael, false);
51
script.set_gAllocInC(
inC
);
53
verifyResultsMadFloatFloatFloatFloat(inA, inB,
inC
, out, false);
60
scriptRelaxed.set_gAllocInC(
inC
);
62
verifyResultsMadFloatFloatFloatFloat(inA, inB,
inC
, out, true);
68
private void verifyResultsMadFloatFloatFloatFloat(Allocation inA, Allocation inB, Allocation
inC
, Allocation out, boolean relaxed) {
74
inC
.copyTo(arrayInC);
83
args.
inC
= arrayInC[i];
102
message.append("Input
inC
: ")
[
all
...]
TestRemquo.java
39
public float
inC
;
46
Allocation
inC
= createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x118af9b82db63b14l, false);
50
script.set_gAllocInC(
inC
);
53
verifyResultsRemquoFloatFloatIntFloat(inB,
inC
, outD, out, false);
60
scriptRelaxed.set_gAllocInC(
inC
);
63
verifyResultsRemquoFloatFloatIntFloat(inB,
inC
, outD, out, true);
69
private void verifyResultsRemquoFloatFloatIntFloat(Allocation inB, Allocation
inC
, Allocation outD, Allocation out, boolean relaxed) {
73
inC
.copyTo(arrayInC);
83
args.
inC
= arrayInC[i];
97
message.append("Input
inC
: ")
[
all
...]
CoreMathVerifier.java
[
all
...]
Completed in 187 milliseconds