/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
TestDistance.rs | 25 float inRightVector = rsGetElementAt_float(gAllocInRightVector, x); 26 return distance(inLeftVector, inRightVector); 30 float2 inRightVector = rsGetElementAt_float2(gAllocInRightVector, x); 31 return distance(inLeftVector, inRightVector); 35 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 36 return distance(inLeftVector, inRightVector); 40 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 41 return distance(inLeftVector, inRightVector); 45 half inRightVector = rsGetElementAt_half(gAllocInRightVector, x); 46 return distance(inLeftVector, inRightVector); [all...] |
TestDot.rs | 25 float inRightVector = rsGetElementAt_float(gAllocInRightVector, x); 26 return dot(inLeftVector, inRightVector); 30 float2 inRightVector = rsGetElementAt_float2(gAllocInRightVector, x); 31 return dot(inLeftVector, inRightVector); 35 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 36 return dot(inLeftVector, inRightVector); 40 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 41 return dot(inLeftVector, inRightVector); 45 half inRightVector = rsGetElementAt_half(gAllocInRightVector, x); 46 return dot(inLeftVector, inRightVector); [all...] |
TestNativeDistance.rs | 25 float inRightVector = rsGetElementAt_float(gAllocInRightVector, x); 26 return native_distance(inLeftVector, inRightVector); 30 float2 inRightVector = rsGetElementAt_float2(gAllocInRightVector, x); 31 return native_distance(inLeftVector, inRightVector); 35 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 36 return native_distance(inLeftVector, inRightVector); 40 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 41 return native_distance(inLeftVector, inRightVector); 45 half inRightVector = rsGetElementAt_half(gAllocInRightVector, x); 46 return native_distance(inLeftVector, inRightVector); [all...] |
TestNativeDivide.rs | 25 float inRightVector = rsGetElementAt_float(gAllocInRightVector, x); 26 return native_divide(inLeftVector, inRightVector); 30 float2 inRightVector = rsGetElementAt_float2(gAllocInRightVector, x); 31 return native_divide(inLeftVector, inRightVector); 35 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 36 return native_divide(inLeftVector, inRightVector); 40 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 41 return native_divide(inLeftVector, inRightVector); 45 half inRightVector = rsGetElementAt_half(gAllocInRightVector, x); 46 return native_divide(inLeftVector, inRightVector); [all...] |
TestCross.rs | 25 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 26 return cross(inLeftVector, inRightVector); 30 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 31 return cross(inLeftVector, inRightVector); 35 half3 inRightVector = rsGetElementAt_half3(gAllocInRightVector, x); 36 return cross(inLeftVector, inRightVector); 40 half4 inRightVector = rsGetElementAt_half4(gAllocInRightVector, x); 41 return cross(inLeftVector, inRightVector);
|
TestFastDistance.rs | 25 float inRightVector = rsGetElementAt_float(gAllocInRightVector, x); 26 return fast_distance(inLeftVector, inRightVector); 30 float2 inRightVector = rsGetElementAt_float2(gAllocInRightVector, x); 31 return fast_distance(inLeftVector, inRightVector); 35 float3 inRightVector = rsGetElementAt_float3(gAllocInRightVector, x); 36 return fast_distance(inLeftVector, inRightVector); 40 float4 inRightVector = rsGetElementAt_float4(gAllocInRightVector, x); 41 return fast_distance(inLeftVector, inRightVector);
|
TestDistance.java | 49 public float inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xa38cb25366d69793l, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsDistanceFloatFloatFloat(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsDistanceFloatFloatFloat(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsDistanceFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 95 args.inRightVector = arrayInRightVector[i] [all...] |
TestDot.java | 49 public float inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x948dc35615f562efl, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsDotFloatFloatFloat(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsDotFloatFloatFloat(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsDotFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 95 args.inRightVector = arrayInRightVector[i] [all...] |
TestNativeDistance.java | 49 public float inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x98c2c48c9b58b3c2l, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsNativeDistanceFloatFloatFloat(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsNativeDistanceFloatFloatFloat(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsNativeDistanceFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 95 args.inRightVector = arrayInRightVector[i] [all...] |
TestNativeDivide.java | 49 public float inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x5ed4412e19040daal, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsNativeDivideFloatFloatFloat(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsNativeDivideFloatFloatFloat(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsNativeDivideFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 95 args.inRightVector = arrayInRightVector[i] [all...] |
TestCross.java | 49 public float[] inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0xe9d27bf3de024b21l, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsCrossFloat3Float3Float3(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsCrossFloat3Float3Float3(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsCrossFloat3Float3Float3(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 94 args.inRightVector = new float[3] [all...] |
TestFastDistance.java | 49 public float inRightVector; 55 Allocation inRightVector = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x83606d459f1626e3l, false); 58 script.set_gAllocInRightVector(inRightVector); 60 verifyResultsFastDistanceFloatFloatFloat(inLeftVector, inRightVector, out, false); 67 scriptRelaxed.set_gAllocInRightVector(inRightVector); 69 verifyResultsFastDistanceFloatFloatFloat(inLeftVector, inRightVector, out, true); 75 inRightVector.destroy(); 78 private void verifyResultsFastDistanceFloatFloatFloat(Allocation inLeftVector, Allocation inRightVector, Allocation out, boolean relaxed) { 84 inRightVector.copyTo(arrayInRightVector); 95 args.inRightVector = arrayInRightVector[i] [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
CoreMathVerifier.java | [all...] |