/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
D | RSResizeTest.java | 37 …private void testResize(int w, int h, Element.DataType dt, int vecSize, float scaleX, float scaleY… in testResize() 40 if (dt == Element.DataType.UNSIGNED_8) { in testResize() 95 testResize(inX, inX, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f); in test_U8_4_SCALE10_10_inSqure() 98 testResize(inX, inX, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f); in test_U8_3_SCALE10_10_inSqure() 101 testResize(inX, inX, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f); in test_U8_2_SCALE10_10_inSqure() 104 testResize(inX, inX, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f); in test_U8_1_SCALE10_10_inSqure() 108 testResize(inX, inX, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f); in test_U8_4_SCALE20_20_inSqure() 111 testResize(inX, inX, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f); in test_U8_3_SCALE20_20_inSqure() 114 testResize(inX, inX, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f); in test_U8_2_SCALE20_20_inSqure() 117 testResize(inX, inX, Element.DataType.UNSIGNED_8, 1, 2.f, 2.f); in test_U8_1_SCALE20_20_inSqure() [all …]
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | IntrinsicResize.java | 30 …private void testResize(int w, int h, Element.DataType dt, int vecSize, float scaleX, float scaleY… in testResize() 70 if (dt == Element.DataType.UNSIGNED_8) { in testResize() 102 if (dt == Element.DataType.UNSIGNED_8) { in testResize() 151 testResize(inX, inX, Element.DataType.UNSIGNED_8, 4, 1.f, 1.f, false); in test_U8_4_SCALE10_10_inSquare() 155 testResize(inX, inX, Element.DataType.UNSIGNED_8, 3, 1.f, 1.f, false); in test_U8_3_SCALE10_10_inSquare() 159 testResize(inX, inX, Element.DataType.UNSIGNED_8, 2, 1.f, 1.f, false); in test_U8_2_SCALE10_10_inSquare() 163 testResize(inX, inX, Element.DataType.UNSIGNED_8, 1, 1.f, 1.f, false); in test_U8_1_SCALE10_10_inSquare() 168 testResize(inX, inX, Element.DataType.UNSIGNED_8, 4, 2.f, 2.f, false); in test_U8_4_SCALE20_20_inSquare() 172 testResize(inX, inX, Element.DataType.UNSIGNED_8, 3, 2.f, 2.f, false); in test_U8_3_SCALE20_20_inSquare() 176 testResize(inX, inX, Element.DataType.UNSIGNED_8, 2, 2.f, 2.f, false); in test_U8_2_SCALE20_20_inSquare() [all …]
|
D | IntrinsicColorMatrix.java | 36 Element.DataType dtIn, int vsIn, in subtest() 37 Element.DataType dtOut, int vsOut, in subtest() 81 private void test(Element.DataType dtin, Element.DataType dtout, int subtest, in test() 141 test(Element.DataType.UNSIGNED_8, Element.DataType.UNSIGNED_8, 0, false); in test_U8_U8_Ident() 145 test(Element.DataType.FLOAT_32, Element.DataType.FLOAT_32, 0, false); in test_F32_F32_Ident() 149 test(Element.DataType.UNSIGNED_8, Element.DataType.FLOAT_32, 0, false); in test_U8_F32_Ident() 153 test(Element.DataType.FLOAT_32, Element.DataType.UNSIGNED_8, 0, false); in test_F32_U8_Ident() 157 test(Element.DataType.UNSIGNED_8, Element.DataType.UNSIGNED_8, 2, false); in test_U8_U8_Rand() 161 test(Element.DataType.FLOAT_32, Element.DataType.FLOAT_32, 10, false); in test_F32_F32_Rand() 165 test(Element.DataType.UNSIGNED_8, Element.DataType.FLOAT_32, 10, false); in test_U8_F32_Rand() [all …]
|
D | AllocationByteBufferTest.java | 25 import android.renderscript.Element.DataType; 36 Allocation createTypedAllocation(DataType dt, int size, int dimX, int dimY) { in createTypedAllocation() 48 void testByteBufferHelper(DataType dt, int byteSize, int dimX, int dimY) { in testByteBufferHelper() 72 void testByteBufferHelper1D(DataType dt, int byteSize) { in testByteBufferHelper1D() 78 void testByteBufferHelper2D(DataType dt, int byteSize) { in testByteBufferHelper2D() 128 testByteBufferHelper1D(DataType.UNSIGNED_8, 1); in testByteBufferU8_1D() 132 testByteBufferHelper2D(DataType.UNSIGNED_8, 1); in testByteBufferU8_2D() 136 testByteBufferHelper1D(DataType.UNSIGNED_16, 2); in testByteBufferU16_1D() 140 testByteBufferHelper2D(DataType.UNSIGNED_16, 2); in testByteBufferU16_2D() 144 testByteBufferHelper1D(DataType.UNSIGNED_32, 4); in testByteBufferU32_1D() [all …]
|
D | ElementTest.java | 20 import android.renderscript.Element.DataType; 28 DataType.UNSIGNED_8, in testCreatePixel() 31 DataType.UNSIGNED_5_6_5, in testCreatePixel() 34 DataType.UNSIGNED_8, in testCreatePixel() 37 DataType.UNSIGNED_5_5_5_1, in testCreatePixel() 40 DataType.UNSIGNED_4_4_4_4, in testCreatePixel() 43 DataType.UNSIGNED_8, in testCreatePixel() 51 assertTrue(Element.createVector(mRS, DataType.FLOAT_32, len) != null); in testCreateVector() 52 assertTrue(Element.createVector(mRS, DataType.FLOAT_64, len) != null); in testCreateVector() 53 assertTrue(Element.createVector(mRS, DataType.SIGNED_8, len) != null); in testCreateVector() [all …]
|
D | RSBaseCompute.java | 76 protected Element getElement(RenderScript rs, Element.DataType dataType, int size) { in getElement() 79 if (dataType == Element.DataType.FLOAT_64) { in getElement() 81 } else if (dataType == Element.DataType.FLOAT_32) { in getElement() 83 } else if (dataType == Element.DataType.FLOAT_16) { in getElement() 85 } else if (dataType == Element.DataType.SIGNED_64) { in getElement() 87 } else if (dataType == Element.DataType.UNSIGNED_64) { in getElement() 89 } else if (dataType == Element.DataType.SIGNED_32) { in getElement() 91 } else if (dataType == Element.DataType.UNSIGNED_32) { in getElement() 93 } else if (dataType == Element.DataType.SIGNED_16) { in getElement() 95 } else if (dataType == Element.DataType.UNSIGNED_16) { in getElement() [all …]
|
D | IntrinsicConvolve3x3.java | 23 …private void testConvolve3(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc… in testConvolve3() 54 if (dt == Element.DataType.UNSIGNED_8) { in testConvolve3() 92 if (dt == Element.DataType.UNSIGNED_8) { in testConvolve3() 129 if (dt == Element.DataType.UNSIGNED_8) { in testConvolve3() 171 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 4, null); in test_U8_4() 175 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 3, null); in test_U8_3() 179 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 2, null); in test_U8_2() 183 testConvolve3(100, 100, Element.DataType.UNSIGNED_8, 1, null); in test_U8_1() 188 testConvolve3(100, 100, Element.DataType.FLOAT_32, 4, null); in test_F32_4() 193 testConvolve3(100, 100, Element.DataType.FLOAT_32, 3, null); in test_F32_3() [all …]
|
D | IntrinsicConvolve5x5.java | 39 if (e.getDataType() == Element.DataType.UNSIGNED_8) { in test5() 76 …private void testConvolve5(int w, int h, Element.DataType dt, int vecSize, Script.LaunchOptions sc… in testConvolve5() 112 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 4, null); in test_U8_4() 116 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 3, null); in test_U8_3() 120 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 2, null); in test_U8_2() 124 testConvolve5(100, 100, Element.DataType.UNSIGNED_8, 1, null); in test_U8_1() 129 testConvolve5(100, 100, Element.DataType.FLOAT_32, 4, null); in test_F32_4() 133 testConvolve5(100, 100, Element.DataType.FLOAT_32, 3, null); in test_F32_3() 137 testConvolve5(100, 100, Element.DataType.FLOAT_32, 2, null); in test_F32_2() 141 testConvolve5(100, 100, Element.DataType.FLOAT_32, 1, null); in test_F32_1() [all …]
|
/cts/tests/tests/resourcesloader/src/android/content/res/loader/cts/ |
D | ResourcesLoaderFallthroughTest.kt | 28 val p1 = PROVIDER_ONE.openProvider(DataType.APK_DISK_FD) in <lambda>() 29 val p2 = PROVIDER_TWO.openProvider(DataType.APK_DISK_FD) in <lambda>() 30 val p3 = PROVIDER_THREE.openProvider(DataType.APK_DISK_FD, in <lambda>() 33 val p4 = PROVIDER_FOUR.openProvider(DataType.APK_DISK_FD) in <lambda>() 76 val p1 = PROVIDER_ONE.openProvider(DataType.APK_DISK_FD) in <lambda>() 77 val p2 = PROVIDER_TWO.openProvider(DataType.APK_DISK_FD) in <lambda>() 78 val p3 = PROVIDER_THREE.openProvider(DataType.APK_DISK_FD) in <lambda>() 110 val p22 = PROVIDER_TWO.openProvider(DataType.APK_DISK_FD, in <lambda>()
|
D | ResourcesLoaderTestBase.kt | 69 open lateinit var dataType: DataType in <lambda>() 97 dataType: DataType, in <lambda>() 104 DataType.APK_DISK_FD_NO_ASSETS_PROVIDER -> { in <lambda>() 111 DataType.APK_DISK_FD -> { in <lambda>() 118 DataType.APK_DISK_FD_OFFSETS -> { in <lambda>() 125 DataType.ARSC_DISK_FD -> { in <lambda>() 132 DataType.ARSC_DISK_FD_OFFSETS -> { in <lambda>() 139 DataType.APK_RAM_OFFSETS -> { in <lambda>() 151 DataType.APK_RAM_FD -> { in <lambda>() 159 DataType.ARSC_RAM_MEMORY -> { in <lambda>() [all …]
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/generated/ |
D | TestClamp.java | 55 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x7e886d7cc83c447dl… in checkClampFloatFloatFloatFloat() 56 …Allocation inMinValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xdcebf6f2302340… in checkClampFloatFloatFloatFloat() 57 …Allocation inMaxValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xdcebf6e6c18032… in checkClampFloatFloatFloatFloat() 60 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkClampFloatFloatFloatFloat() 70 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkClampFloatFloatFloatFloat() 150 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xa0d28bf142b07a5l,… in checkClampFloat2Float2Float2Float2() 151 …Allocation inMinValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xb4e5c5f6ea8fc0… in checkClampFloat2Float2Float2Float2() 152 …Allocation inMaxValue = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xb4e5c5eb7becb2… in checkClampFloat2Float2Float2Float2() 155 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkClampFloat2Float2Float2Float2() 165 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkClampFloat2Float2Float2Float2() [all …]
|
D | TestRemquo.java | 55 …Allocation inNumerator = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xcd5efc69edd4f… in checkRemquoFloatFloatIntFloat() 56 …Allocation inDenominator = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x4ff0c9312eb… in checkRemquoFloatFloatIntFloat() 58 …Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkRemquoFloatFloatIntFloat() 59 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkRemquoFloatFloatIntFloat() 70 …Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkRemquoFloatFloatIntFloat() 71 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkRemquoFloatFloatIntFloat() 144 …Allocation inNumerator = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x28c14abc3a271… in checkRemquoFloat2Float2Int2Float2() 145 …Allocation inDenominator = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x58f8799a6ba… in checkRemquoFloat2Float2Int2Float2() 147 …Allocation outQuotient = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2… in checkRemquoFloat2Float2Int2Float2() 148 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkRemquoFloat2Float2Int2Float2() [all …]
|
D | TestMax.java | 54 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162460l, fa… in checkMaxFloatFloatFloat() 55 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2952d868c2162461l, fa… in checkMaxFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMaxFloatFloatFloat() 66 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMaxFloatFloatFloat() 137 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc6031e7536addadal, fa… in checkMaxFloat2Float2Float2() 138 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc6031e7536addadbl, fa… in checkMaxFloat2Float2Float2() 140 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMaxFloat2Float2Float2() 149 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMaxFloat2Float2Float2() 220 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x1a67fc95388bdc7bl, fa… in checkMaxFloat3Float3Float3() 221 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x1a67fc95388bdc7cl, fa… in checkMaxFloat3Float3Float3() [all …]
|
D | TestMin.java | 54 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121573el, fa… in checkMinFloatFloatFloat() 55 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xbdad0b097121573fl, fa… in checkMinFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMinFloatFloatFloat() 66 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMinFloatFloatFloat() 137 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2f1cc4b149b4e454l, fa… in checkMinFloat2Float2Float2() 138 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2f1cc4b149b4e455l, fa… in checkMinFloat2Float2Float2() 140 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMinFloat2Float2Float2() 149 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMinFloat2Float2Float2() 220 …Allocation inA = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x8381a2d14b92e5f5l, fa… in checkMinFloat3Float3Float3() 221 …Allocation inB = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0x8381a2d14b92e5f6l, fa… in checkMinFloat3Float3Float3() [all …]
|
D | TestNativeSincos.java | 54 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xe15df2366436cc13l, fa… in checkNativeSincosFloatFloatFloat() 56 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkNativeSincosFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkNativeSincosFloatFloatFloat() 67 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkNativeSincosFloatFloatFloat() 68 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkNativeSincosFloatFloatFloat() 147 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xe5a1f1dcda676ea9l, fa… in checkNativeSincosFloat2Float2Float2() 149 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkNativeSincosFloat2Float2Float2() 150 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkNativeSincosFloat2Float2Float2() 160 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkNativeSincosFloat2Float2Float2() 161 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkNativeSincosFloat2Float2Float2() [all …]
|
D | TestSincos.java | 54 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xb8748e13e46c48d4l, fa… in checkSincosFloatFloatFloat() 56 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkSincosFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkSincosFloatFloatFloat() 67 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkSincosFloatFloatFloat() 68 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkSincosFloatFloatFloat() 147 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xc85bab4e3e2fc77cl, fa… in checkSincosFloat2Float2Float2() 149 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkSincosFloat2Float2Float2() 150 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkSincosFloat2Float2Float2() 160 …Allocation outCos = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkSincosFloat2Float2Float2() 161 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkSincosFloat2Float2Float2() [all …]
|
D | TestMad.java | 55 …Allocation inMultiplicand1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2a4461e34… in checkMadFloatFloatFloatFloat() 56 …Allocation inMultiplicand2 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x2a4461e34… in checkMadFloatFloatFloatFloat() 57 …Allocation inOffset = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xcea3b86dc50ce0fc… in checkMadFloatFloatFloatFloat() 59 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMadFloatFloatFloatFloat() 69 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMadFloatFloatFloatFloat() 149 …Allocation inMultiplicand1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xdfffb28a8… in checkMadFloat2Float2Float2Float2() 150 …Allocation inMultiplicand2 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xdfffb28a8… in checkMadFloat2Float2Float2Float2() 151 …Allocation inOffset = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x3da8592f318f8924… in checkMadFloat2Float2Float2Float2() 153 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMadFloat2Float2Float2Float2() 163 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMadFloat2Float2Float2Float2() [all …]
|
D | TestFma.java | 55 …Allocation inMultiplicand1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x716293a68… in checkFmaFloatFloatFloatFloat() 56 …Allocation inMultiplicand2 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x716293a68… in checkFmaFloatFloatFloatFloat() 57 …Allocation inOffset = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x4a235a109d441b0e… in checkFmaFloatFloatFloatFloat() 59 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFmaFloatFloatFloatFloat() 69 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFmaFloatFloatFloatFloat() 149 …Allocation inMultiplicand1 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x1bb42af9d… in checkFmaFloat2Float2Float2Float2() 150 …Allocation inMultiplicand2 = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x1bb42af9d… in checkFmaFloat2Float2Float2Float2() 151 …Allocation inOffset = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x667fbd778aeda396… in checkFmaFloat2Float2Float2Float2() 153 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFmaFloat2Float2Float2Float2() 163 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFmaFloat2Float2Float2Float2() [all …]
|
D | TestLgamma.java | 53 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xd9395583050bc4bel, fa… in checkLgammaFloatFloat() 55 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkLgammaFloatFloat() 63 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkLgammaFloatFloat() 125 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xeef55496367a4132l, fa… in checkLgammaFloat2Float2() 127 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkLgammaFloat2Float2() 135 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkLgammaFloat2Float2() 197 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 3, 0xeef71db12c956210l, fa… in checkLgammaFloat3Float3() 199 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTS… in checkLgammaFloat3Float3() 207 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTS… in checkLgammaFloat3Float3() 269 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 4, 0xeef8e6cc22b082eel, fa… in checkLgammaFloat4Float4() [all …]
|
D | TestConvert.java | 53 …Allocation inV = createRandomFloatAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xfb5215c44e1f6ac6… in checkConvertFloat2Float2() 55 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkConvertFloat2Float2() 63 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkConvertFloat2Float2() 125 …Allocation inV = createRandomFloatAllocation(mRS, Element.DataType.FLOAT_32, 3, 0xfb53dedf443a8ba4… in checkConvertFloat3Float3() 127 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTS… in checkConvertFloat3Float3() 135 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 3), INPUTS… in checkConvertFloat3Float3() 197 …Allocation inV = createRandomFloatAllocation(mRS, Element.DataType.FLOAT_32, 4, 0xfb55a7fa3a55ac82… in checkConvertFloat4Float4() 199 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTS… in checkConvertFloat4Float4() 207 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 4), INPUTS… in checkConvertFloat4Float4() 274 …Allocation inV = createRandomIntegerAllocation(mRS, Element.DataType.SIGNED_8, 2, 0x5861e2161f4892… in checkConvertChar2Float2() [all …]
|
D | TestMix.java | 55 …Allocation inStart = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x9f4beff6471d6db1l… in checkMixFloatFloatFloatFloat() 56 …Allocation inStop = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x6ede0b88b4422e8fl,… in checkMixFloatFloatFloatFloat() 57 …Allocation inFraction = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x6d2f014ec6a51d… in checkMixFloatFloatFloatFloat() 59 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMixFloatFloatFloatFloat() 69 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkMixFloatFloatFloatFloat() 149 …Allocation inStart = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x45502e8f0a2d9ce9l… in checkMixFloat2Float2Float2Float2() 150 …Allocation inStop = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xba2b8a035395e837l,… in checkMixFloat2Float2Float2Float2() 151 …Allocation inFraction = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xe56bef3c621e0a… in checkMixFloat2Float2Float2Float2() 153 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMixFloat2Float2Float2Float2() 163 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkMixFloat2Float2Float2Float2() [all …]
|
D | TestFrexp.java | 54 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x57ae9fe07384e56dl, fa… in checkFrexpFloatIntFloat() 56 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkFrexpFloatIntFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFrexpFloatIntFloat() 67 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 1… in checkFrexpFloatIntFloat() 68 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFrexpFloatIntFloat() 147 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x544e0a688fe7701l, fal… in checkFrexpFloat2Int2Float2() 149 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2… in checkFrexpFloat2Int2Float2() 150 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFrexpFloat2Int2Float2() 160 …Allocation outExponent = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_32, 2… in checkFrexpFloat2Int2Float2() 161 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFrexpFloat2Int2Float2() [all …]
|
D | TestModf.java | 54 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0xd655dc05ccaef45l, fal… in checkModfFloatFloatFloat() 56 …n outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkModfFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkModfFloatFloatFloat() 67 …n outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INP… in checkModfFloatFloatFloat() 68 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkModfFloatFloatFloat() 147 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0x2a1dc519fa16305fl, fa… in checkModfFloat2Float2Float2() 149 …n outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkModfFloat2Float2Float2() 150 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkModfFloat2Float2Float2() 160 …n outIntegralPart = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INP… in checkModfFloat2Float2Float2() 161 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkModfFloat2Float2Float2() [all …]
|
D | TestFract.java | 54 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 1, 0x57d8e6573c675d27l, fa… in checkFractFloatFloatFloat() 56 …Allocation outFloor = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), I… in checkFractFloatFloatFloat() 57 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFractFloatFloatFloat() 67 …Allocation outFloor = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), I… in checkFractFloatFloatFloat() 68 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 1), INPUTS… in checkFractFloatFloatFloat() 147 …Allocation inV = createRandomAllocation(mRS, Element.DataType.FLOAT_32, 2, 0xd1dbe683cdf8f525l, fa… in checkFractFloat2Float2Float2() 149 …Allocation outFloor = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), I… in checkFractFloat2Float2Float2() 150 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFractFloat2Float2Float2() 160 …Allocation outFloor = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), I… in checkFractFloat2Float2Float2() 161 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.FLOAT_32, 2), INPUTS… in checkFractFloat2Float2Float2() [all …]
|
D | TestClz.java | 53 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 1, 0xf6f3a15e2f7765afl… in checkClzCharChar() 55 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTS… in checkClzCharChar() 63 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 1), INPUTS… in checkClzCharChar() 124 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 2, 0xf718b99dcaca5e93l… in checkClzChar2Char2() 126 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTS… in checkClzChar2Char2() 134 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 2), INPUTS… in checkClzChar2Char2() 195 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 3, 0x21a5da5bc7099347l… in checkClzChar3Char3() 197 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTS… in checkClzChar3Char3() 205 …Allocation out = Allocation.createSized(mRS, getElement(mRS, Element.DataType.SIGNED_8, 3), INPUTS… in checkClzChar3Char3() 266 …Allocation inValue = createRandomAllocation(mRS, Element.DataType.SIGNED_8, 4, 0x4c32fb19c348c7fbl… in checkClzChar4Char4() [all …]
|