Home
last modified time | relevance | path

Searched refs:F32 (Results 1 – 23 of 23) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DTypeTest.java53 testTypeBuilderHelper(Element.F32(mRS)); in testTypeBuilder()
85 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetCount()
127 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetElement()
129 assertTrue(b.create().getElement() == Element.F32(mRS)); in testGetElement()
133 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetX()
139 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetY()
147 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetYuv()
155 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetZ()
161 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testHasFaces()
169 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in testGetMipmaps()
[all …]
DInitTest.java38 mIn = Allocation.createSized(mRS, Element.F32(mRS), INPUTSIZE); in testInitTest()
39 mOut= Allocation.createSized(mRS, Element.F32(mRS), INPUTSIZE); in testInitTest()
DAllocationTest.java123 createTypedHelper(Element.F32(mRS)); in testCreateTyped()
166 createSizedHelper(Element.F32(mRS)); in testCreateSized()
298 Allocation A = Allocation.createSized(mRS, Element.F32(mRS), nElems); in helperFloatCopy()
447 Allocation srcA = Allocation.createSized(mRS, Element.F32(mRS), nElems); in helperFloatAllocationCopy()
448 Allocation dstA = Allocation.createSized(mRS, Element.F32(mRS), nElems); in helperFloatAllocationCopy()
502 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in helperFloatCopy2D()
619 Type.Builder b = new Type.Builder(mRS, Element.F32(mRS)); in helperFloatAllocationCopy2D()
844 a = Allocation.createSized(mRS, Element.F32(mRS), 100); in testDimReturnsZero()
851 b = new Type.Builder(mRS, Element.F32(mRS)); in testDimReturnsZero()
860 b = new Type.Builder(mRS, Element.F32(mRS)).setX(102); in testDimReturnsZero()
[all …]
DDoubleTest.java31 Allocation out = Allocation.createSized(rs, Element.F32(rs), big); in testDoubleGlobal()
DElementTest.java71 assertTrue(Element.F32(mRS) != null); in testPrebuiltElements()
193 Element[] F32 = { Element.F32(mRS) }; in testIsCompatible() local
248 F32, F32_2, F32_3, F32_4, in testIsCompatible()
288 eb.add(Element.F32(mRS), "F32", arraySize); in testElementBuilder()
358 assertFalse(Element.F32(mRS).isComplex()); in testIsComplex()
415 eb.add(Element.F32(mRS), "FLOAT"); in testIsComplex()
DIntrinsicBase.java69 e = Element.F32(mRS); in makeElement()
DVLoadTest.java337 testSetup(Type.createX(mRS, Element.F32(mRS), w)); in testVload_float()
349 testSetup(Type.createX(mRS, Element.F32(mRS), w)); in testVload_float_relaxed()
Dvector.rscript47 rsDebug("Testing F32", 0);
DAllocationCopyToTest.java166 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_Allocationcopy1DRangeTo_Float()
355 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_Allocationcopy2DRangeTo_Float()
550 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_Allocationcopy3DRangeTo_Float()
776 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_Allocationcopy1DRangeToUnchecked_Float()
DRsAllocationCopyTest.java179 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_RsAllocationCopy1D_Float()
444 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS)); in test_RsAllocationCopy2D_Float()
DKernelInputTest.java205 Allocation ain = Allocation.createSized(mRS, Element.F32(mRS), 1); in testInputNotModified_float()
206 Allocation tmp = Allocation.createSized(mRS, Element.F32(mRS), 1); in testInputNotModified_float()
DRSBaseCompute.java82 element = Element.F32(rs); in getElement()
DKernelTest.java320 t = new Type.Builder(mRS, Element.F32(mRS)).setX(x).create(); in testForEach()
DForEachTest.java320 t = new Type.Builder(mRS, Element.F32(mRS)).setX(x).create(); in testForEach()
DReduceTest.java629 Allocation[] allocs2 = createInputAllocations(Element.F32(mRS), 3); in testBadSillySumInputDimensionMismatch()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_type.cpp76 passed &= testTypeBuilderHelper(mRS, Element::F32(mRS)); in Java_android_cts_rscpp_RSTypeTest_testCreate()
113 Type::Builder b(mRS, Element::F32(mRS)); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
180 sp<const Type> t = Type::create(mRS, Element::F32(mRS), 3, 4, 0); in Java_android_cts_rscpp_RSTypeTest_testGet()
181 passed &= (t->getElement() == Element::F32(mRS)); in Java_android_cts_rscpp_RSTypeTest_testGet()
186 Type::Builder b(mRS, Element::F32(mRS)); in Java_android_cts_rscpp_RSTypeTest_testGet()
Drs_jni_element.cpp106 passed &= (Element::F32(mRS) != nullptr); in Java_android_cts_rscpp_RSElementTest_testPrebuiltElements()
173 sp<const Element> F32 = Element::F32(mRS); in Java_android_cts_rscpp_RSElementTest_testIsCompatible() local
203 sp<const Element> ElementArrs[] = { ALLOCATION, BOOLEAN, ELEMENT, F32, F32_2, in Java_android_cts_rscpp_RSElementTest_testIsCompatible()
242 eb->add(Element::F32(mRS), "F32", arraySize); in Java_android_cts_rscpp_RSElementTest_testElementBuilder()
Drs_jni_allocation.cpp71 createTypedHelper(rs, Element::F32(rs)); in Java_android_cts_rscpp_RSAllocationTest_typedTest()
194 sp<Allocation> srcA = Allocation::createSized(rs, Element::F32(rs), cellCount); in helperFloatAllocationCopy1D()
195 sp<Allocation> dstA = Allocation::createSized(rs, Element::F32(rs), cellCount); in helperFloatAllocationCopy1D()
282 sp<Allocation> srcA = Allocation::createSized2D(rs, Element::F32(rs), xElems, yElems); in helperFloatAllocationCopy2D()
283 sp<Allocation> dstA = Allocation::createSized2D(rs, Element::F32(rs), xElems, yElems); in helperFloatAllocationCopy2D()
386 Type::Builder typeBuilder(rs, Element::F32(rs)); in helperFloatAllocationCopy3D()
Drs_jni_foreach.cpp179 t = Type::create(mRS, Element::F32(mRS), x, 0, 0); in Java_android_cts_rscpp_RSForEachTest_testForEach()
Drs_jni.cpp60 return Element::F32(rs); in makeElement()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBLAS.java80 … mMatrixS.add(Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), x, y))); in setUp()
132 if (e.isCompatible(Element.F32(mRS)) || e.isCompatible(Element.F32_2(mRS))) { in verifyMatrix()
251 if (elemA.isCompatible(Element.F32(mRS))) { in xGEMV_API_test()
320 …Allocation matrixAS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData.d… in test_L2_SGEMV_Correctness()
321 …Allocation vectorXS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData.d… in test_L2_SGEMV_Correctness()
322 …Allocation vectorYS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData.d… in test_L2_SGEMV_Correctness()
329 …Allocation vectorYRef = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData… in test_L2_SGEMV_Correctness()
339 … vectorYRef = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), mBLASData.dN, 1)); in test_L2_SGEMV_Correctness()
355 vectorXS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), dimX, 1)); in test_L2_SGEMV_Correctness()
356 vectorYS = Allocation.createTyped(mRS, Type.createXY(mRS, Element.F32(mRS), dimY, 1)); in test_L2_SGEMV_Correctness()
[all …]
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/
DKernelDataForRenderScriptF32.java72 Element.F32(renderScript), kernelStack.length); in KernelDataForRenderScriptF32()
/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSCppTest.java85 e = Element.F32(mRS); in makeElement()