HomeSort by relevance Sort by last modified time
    Searched full:inmantissa (Results 1 - 3 of 3) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestLdexp.rs 24 float __attribute__((kernel)) testLdexpFloatIntFloat(float inMantissa, unsigned int x) {
26 return ldexp(inMantissa, inExponent);
29 float2 __attribute__((kernel)) testLdexpFloat2Int2Float2(float2 inMantissa, unsigned int x) {
31 return ldexp(inMantissa, inExponent);
34 float3 __attribute__((kernel)) testLdexpFloat3Int3Float3(float3 inMantissa, unsigned int x) {
36 return ldexp(inMantissa, inExponent);
39 float4 __attribute__((kernel)) testLdexpFloat4Int4Float4(float4 inMantissa, unsigned int x) {
41 return ldexp(inMantissa, inExponent);
44 float2 __attribute__((kernel)) testLdexpFloat2IntFloat2(float2 inMantissa, unsigned int x) {
46 return ldexp(inMantissa, inExponent)
    [all...]
TestLdexp.java 48 public float inMantissa;
54 Allocation inMantissa = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xdffd225490f0e26fl, false);
59 script.forEach_testLdexpFloatIntFloat(inMantissa, out);
60 verifyResultsLdexpFloatIntFloat(inMantissa, inExponent, out, false);
68 scriptRelaxed.forEach_testLdexpFloatIntFloat(inMantissa, out);
69 verifyResultsLdexpFloatIntFloat(inMantissa, inExponent, out, true);
74 inMantissa.destroy();
78 private void verifyResultsLdexpFloatIntFloat(Allocation inMantissa, Allocation inExponent, Allocation out, boolean relaxed) {
81 inMantissa.copyTo(arrayInMantissa);
94 args.inMantissa = arrayInMantissa[i]
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java     [all...]

Completed in 1019 milliseconds