Searched refs:outExponent (Results 1 – 3 of 3) sorted by relevance
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
D | TestFrexp.java | 49 public int outExponent; field in TestFrexp.ArgumentsFloatIntFloat 56 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkFrexpFloatIntFloat() local 58 script.set_gAllocOutExponent(outExponent); in checkFrexpFloatIntFloat() 60 verifyResultsFrexpFloatIntFloat(inV, outExponent, out, false); in checkFrexpFloatIntFloat() 61 outExponent.destroy(); in checkFrexpFloatIntFloat() 67 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkFrexpFloatIntFloat() local 69 scriptRelaxed.set_gAllocOutExponent(outExponent); in checkFrexpFloatIntFloat() 71 verifyResultsFrexpFloatIntFloat(inV, outExponent, out, true); in checkFrexpFloatIntFloat() 72 outExponent.destroy(); in checkFrexpFloatIntFloat() 80 …private void verifyResultsFrexpFloatIntFloat(Allocation inV, Allocation outExponent, Allocation ou… in verifyResultsFrexpFloatIntFloat() argument [all …]
|
D | TestFrexp.rscript | 25 int outExponent = 0; 26 float out = frexp(inV, &outExponent); 27 rsSetElementAt_int(gAllocOutExponent, outExponent, x); 32 int2 outExponent = 0; 33 float2 out = frexp(inV, &outExponent); 34 rsSetElementAt_int2(gAllocOutExponent, outExponent, x); 39 int3 outExponent = 0; 40 float3 out = frexp(inV, &outExponent); 41 rsSetElementAt_int3(gAllocOutExponent, outExponent, x); 46 int4 outExponent = 0; [all …]
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | CoreMathVerifier.java | 2080 args.outExponent = result.exponent; in computeFrexp()
|