HomeSort by relevance Sort by last modified time
    Searched refs:inBase (Results 1 - 11 of 11) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/generated/
TestNativePowr.rs 24 float __attribute__((kernel)) testNativePowrFloatFloatFloat(float inBase, unsigned int x) {
26 return native_powr(inBase, inExponent);
29 float2 __attribute__((kernel)) testNativePowrFloat2Float2Float2(float2 inBase, unsigned int x) {
31 return native_powr(inBase, inExponent);
34 float3 __attribute__((kernel)) testNativePowrFloat3Float3Float3(float3 inBase, unsigned int x) {
36 return native_powr(inBase, inExponent);
39 float4 __attribute__((kernel)) testNativePowrFloat4Float4Float4(float4 inBase, unsigned int x) {
41 return native_powr(inBase, inExponent);
44 half __attribute__((kernel)) testNativePowrHalfHalfHalf(half inBase, unsigned int x) {
46 return native_powr(inBase, inExponent)
    [all...]
TestPow.rs 24 float __attribute__((kernel)) testPowFloatFloatFloat(float inBase, unsigned int x) {
26 return pow(inBase, inExponent);
29 float2 __attribute__((kernel)) testPowFloat2Float2Float2(float2 inBase, unsigned int x) {
31 return pow(inBase, inExponent);
34 float3 __attribute__((kernel)) testPowFloat3Float3Float3(float3 inBase, unsigned int x) {
36 return pow(inBase, inExponent);
39 float4 __attribute__((kernel)) testPowFloat4Float4Float4(float4 inBase, unsigned int x) {
41 return pow(inBase, inExponent);
44 half __attribute__((kernel)) testPowHalfHalfHalf(half inBase, unsigned int x) {
46 return pow(inBase, inExponent)
    [all...]
TestPown.rs 24 float __attribute__((kernel)) testPownFloatIntFloat(float inBase, unsigned int x) {
26 return pown(inBase, inExponent);
29 float2 __attribute__((kernel)) testPownFloat2Int2Float2(float2 inBase, unsigned int x) {
31 return pown(inBase, inExponent);
34 float3 __attribute__((kernel)) testPownFloat3Int3Float3(float3 inBase, unsigned int x) {
36 return pown(inBase, inExponent);
39 float4 __attribute__((kernel)) testPownFloat4Int4Float4(float4 inBase, unsigned int x) {
41 return pown(inBase, inExponent);
44 half __attribute__((kernel)) testPownHalfIntHalf(half inBase, unsigned int x) {
46 return pown(inBase, inExponent)
    [all...]
TestPowr.rs 24 float __attribute__((kernel)) testPowrFloatFloatFloat(float inBase, unsigned int x) {
26 return powr(inBase, inExponent);
29 float2 __attribute__((kernel)) testPowrFloat2Float2Float2(float2 inBase, unsigned int x) {
31 return powr(inBase, inExponent);
34 float3 __attribute__((kernel)) testPowrFloat3Float3Float3(float3 inBase, unsigned int x) {
36 return powr(inBase, inExponent);
39 float4 __attribute__((kernel)) testPowrFloat4Float4Float4(float4 inBase, unsigned int x) {
41 return powr(inBase, inExponent);
44 half __attribute__((kernel)) testPowrHalfHalfHalf(half inBase, unsigned int x) {
46 return powr(inBase, inExponent)
    [all...]
TestNativePowr.java 48 public float inBase;
54 Allocation inBase = createRandomFloatAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x22637077834d1839l, 0, 256);
59 script.forEach_testNativePowrFloatFloatFloat(inBase, out);
60 verifyResultsNativePowrFloatFloatFloat(inBase, inExponent, out, false);
68 scriptRelaxed.forEach_testNativePowrFloatFloatFloat(inBase, out);
69 verifyResultsNativePowrFloatFloatFloat(inBase, inExponent, out, true);
74 inBase.destroy();
78 private void verifyResultsNativePowrFloatFloatFloat(Allocation inBase, Allocation inExponent, Allocation out, boolean relaxed) {
81 inBase.copyTo(arrayInBase);
94 args.inBase = arrayInBase[i]
    [all...]
TestPow.java 48 public float inBase;
54 Allocation inBase = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x377b8a6622b91eel, false);
59 script.forEach_testPowFloatFloatFloat(inBase, out);
60 verifyResultsPowFloatFloatFloat(inBase, inExponent, out, false);
68 scriptRelaxed.forEach_testPowFloatFloatFloat(inBase, out);
69 verifyResultsPowFloatFloatFloat(inBase, inExponent, out, true);
74 inBase.destroy();
78 private void verifyResultsPowFloatFloatFloat(Allocation inBase, Allocation inExponent, Allocation out, boolean relaxed) {
81 inBase.copyTo(arrayInBase);
94 args.inBase = arrayInBase[i]
    [all...]
TestPown.java 48 public float inBase;
54 Allocation inBase = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe020952d622f0405l, false);
59 script.forEach_testPownFloatIntFloat(inBase, out);
60 verifyResultsPownFloatIntFloat(inBase, inExponent, out, false);
68 scriptRelaxed.forEach_testPownFloatIntFloat(inBase, out);
69 verifyResultsPownFloatIntFloat(inBase, inExponent, out, true);
74 inBase.destroy();
78 private void verifyResultsPownFloatIntFloat(Allocation inBase, Allocation inExponent, Allocation out, boolean relaxed) {
81 inBase.copyTo(arrayInBase);
94 args.inBase = arrayInBase[i]
    [all...]
TestPowr.java 48 public float inBase;
54 Allocation inBase = createRandomFloatAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x432f9eac0c490ca4l, 0, 3000);
59 script.forEach_testPowrFloatFloatFloat(inBase, out);
60 verifyResultsPowrFloatFloatFloat(inBase, inExponent, out, false);
68 scriptRelaxed.forEach_testPowrFloatFloatFloat(inBase, out);
69 verifyResultsPowrFloatFloatFloat(inBase, inExponent, out, true);
74 inBase.destroy();
78 private void verifyResultsPowrFloatFloatFloat(Allocation inBase, Allocation inExponent, Allocation out, boolean relaxed) {
81 inBase.copyTo(arrayInBase);
94 args.inBase = arrayInBase[i]
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderIntegerFunctionTests.cpp     [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderIntegerFunctionTests.cpp 809 deUint32* inBase = (deUint32*)values[0];
823 generateRandomInputData(rnd, m_shaderType, type, precision, inBase, numValues);
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
CoreMathVerifier.java     [all...]

Completed in 1047 milliseconds