Home
last modified time | relevance | path

Searched refs:outSignOfGamma (Results 1 – 3 of 3) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
DTestLgamma.rs41 int outSignOfGamma = 0;
42 float out = lgamma(inV, &outSignOfGamma);
43 rsSetElementAt_int(gAllocOutSignOfGamma, outSignOfGamma, x);
48 int2 outSignOfGamma = 0;
49 float2 out = lgamma(inV, &outSignOfGamma);
50 rsSetElementAt_int2(gAllocOutSignOfGamma, outSignOfGamma, x);
55 int3 outSignOfGamma = 0;
56 float3 out = lgamma(inV, &outSignOfGamma);
57 rsSetElementAt_int3(gAllocOutSignOfGamma, outSignOfGamma, x);
62 int4 outSignOfGamma = 0;
[all …]
DTestLgamma.java342 public int outSignOfGamma; field in TestLgamma.ArgumentsFloatIntFloat
349 …Allocation outSignOfGamma = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32… in checkLgammaFloatIntFloat() local
351 script.set_gAllocOutSignOfGamma(outSignOfGamma); in checkLgammaFloatIntFloat()
353 verifyResultsLgammaFloatIntFloat(inV, outSignOfGamma, out, false); in checkLgammaFloatIntFloat()
354 outSignOfGamma.destroy(); in checkLgammaFloatIntFloat()
360 …Allocation outSignOfGamma = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32… in checkLgammaFloatIntFloat() local
362 scriptRelaxed.set_gAllocOutSignOfGamma(outSignOfGamma); in checkLgammaFloatIntFloat()
364 verifyResultsLgammaFloatIntFloat(inV, outSignOfGamma, out, true); in checkLgammaFloatIntFloat()
365 outSignOfGamma.destroy(); in checkLgammaFloatIntFloat()
373 …private void verifyResultsLgammaFloatIntFloat(Allocation inV, Allocation outSignOfGamma, Allocatio… in verifyResultsLgammaFloatIntFloat() argument
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/
DCoreMathVerifier.java2187 (args.outSignOfGamma != result.gammaSign && !isNegativeZero)) { in verifyLgamma()
2195 message.append(String.format("Actual outSign: %d\n", args.outSignOfGamma)); in verifyLgamma()