Home
last modified time | relevance | path

Searched refs:U8_4 (Results 1 – 25 of 27) sorted by relevance

12

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DIntrinsic3DLut.java80 Type.Builder tb = new Type.Builder(mRS, Element.U8_4(mRS)); in initCube()
91 mIntrinsic = ScriptIntrinsic3DLUT.create(mRS, Element.U8_4(mRS)); in initCube()
97 makeBuffers(97, 97, Element.U8_4(mRS)); in test1()
110 makeBuffers(97, 97, Element.U8_4(mRS)); in test2()
124 makeBuffers(97, 97, Element.U8_4(mRS)); in test1C()
139 makeBuffers(97, 97, Element.U8_4(mRS)); in test2C()
154 ScriptIntrinsic3DLUT s = ScriptIntrinsic3DLUT.create(mRS, Element.U8_4(mRS)); in test_ID()
DIntrinsicLut.java45 mIntrinsic = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS)); in createTest()
68 makeBuffers(97, 97, Element.U8_4(mRS)); in test()
81 makeBuffers(97, 97, Element.U8_4(mRS)); in test1C()
96 ScriptIntrinsicLUT s = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS)); in test_ID()
DIntrinsicBlur.java81 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) { in copyInput()
93 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) { in copyOutput()
117 Element e = Element.U8_4(mRS); in testU8_4()
147 Element e = Element.U8_4(mRS); in testU8_4C()
160 ScriptIntrinsicBlur s = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS)); in test_ID()
DScriptGroupTest.java45 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupSingleKernel()
49 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testScriptGroupSingleKernel()
79 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupDisconnectedKernel()
83 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testScriptGroupDisconnectedKernel()
84 mColorMatrix2 = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testScriptGroupDisconnectedKernel()
121 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupFieldConnection()
126 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); in testScriptGroupFieldConnection()
127 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testScriptGroupFieldConnection()
167 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupDisconnectedDAG()
172 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); in testScriptGroupDisconnectedDAG()
[all …]
DImageProcessingTest.java74 Type t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(dimX).setY(dimX).create(); in setUp()
88 mBlur = ScriptIntrinsicBlur.create(mRS, Element.U8_4(mRS)); in testBlur()
114 mBlend = ScriptIntrinsicBlend.create(mRS, Element.U8_4(mRS)); in testBlend()
666 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testColorMatrix()
703 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); in testConvolve3x3()
727 mConvolve5x5 = ScriptIntrinsicConvolve5x5.create(mRS, Element.U8_4(mRS)); in testConvolve5x5()
753 mLUT = ScriptIntrinsicLUT.create(mRS, Element.U8_4(mRS)); in testLUT()
799 mConvolve3x3 = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); in testScriptGroup()
800 mColorMatrix = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in testScriptGroup()
821 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(dimX).setY(dimX).create(); in testScriptGroup()
DAllocationCreateAllocationsTest.java37 Element e = Element.U8_4(mRS); in createAllocationsHelper()
103 Type t = Type.createXY(mRS, Element.U8_4(mRS), dX, dY); in testMultipleIoReceive_USAGE_IO_INPUT()
DRsPackColorTo8888Test.java76 Allocation mAllocationOut = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE); in float3input()
106 Allocation mAllocationOut = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE); in float4input()
DAllocationByteBufferTest.java90 Type t = Type.createX(mRS, Element.U8_4(mRS), dimX); in test1DWrite()
110 Type t = Type.createXY(mRS, Element.U8_4(mRS), dimX, dimY); in test2DWrite()
DRsUnpackColor8888Test.java43 Allocation mAllocationIn = Allocation.createSized(mRS, Element.U8_4(mRS), INPUTSIZE); in testRsUnpackColor8888RGB()
DElementTest.java98 assertTrue(Element.U8_4(mRS) != null); in testPrebuiltElements()
240 Element[] U8_4 = { Element.U8_4(mRS), in testIsCompatible() local
254 U16, U32, U64, U8, U8_3, U8_4 }; in testIsCompatible()
315 eb.add(Element.U8_4(mRS), "U8_4", arraySize); in testElementBuilder()
385 assertFalse(Element.U8_4(mRS).isComplex()); in testIsComplex()
DIntrinsicColorMatrix.java46 mSi = ScriptIntrinsicColorMatrix.create(mRS, Element.U8_4(mRS)); in subtest()
DIntrinsicConvolve3x3.java254 ScriptIntrinsicConvolve3x3 s = ScriptIntrinsicConvolve3x3.create(mRS, Element.U8_4(mRS)); in test_ID()
DIntrinsicHistogram.java42 case 4: e1 = Element.U8_4(mRS); break; in createAllocations()
DIntrinsicConvolve5x5.java191 ScriptIntrinsicConvolve5x5 s = ScriptIntrinsicConvolve5x5.create(mRS, Element.U8_4(mRS)); in test_ID()
DTypeTest.java64 testTypeBuilderHelper(Element.U8_4(mRS)); in testTypeBuilder()
DKernelInputTest.java528 Allocation ain = Allocation.createSized(mRS, Element.U8_4(mRS), 1); in testInputNotModified_uchar4()
529 Allocation tmp = Allocation.createSized(mRS, Element.U8_4(mRS), 1); in testInputNotModified_uchar4()
DAllocationTest.java134 createTypedHelper(Element.U8_4(mRS)); in testCreateTyped()
177 createSizedHelper(Element.U8_4(mRS)); in testCreateSized()
DForEachTest.java114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
DKernelTest.java114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DAllocationInfo.java291 U8_4; enumConstant
311 } else if (element.equals(Element.U8_4(RenderScriptSingleton.getRS()))) { in fromElement()
312 return U8_4; in fromElement()
342 case U8_4: in isElementEqualTo()
343 comparison = Element.U8_4(mRS); in isElementEqualTo()
DBitmapUtils.java47 ScriptIntrinsicHistogram hist = ScriptIntrinsicHistogram.create(rs, Element.U8_4(rs)); in calcHistograms()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_element.cpp133 passed &= (Element::U8_4(mRS) != nullptr); in Java_android_cts_rscpp_RSElementTest_testPrebuiltElements()
200 sp<const Element> U8_4 = Element::U8_4(mRS); in Java_android_cts_rscpp_RSElementTest_testIsCompatible() local
207 U16, U32, U64, U8, U8_3, U8_4 }; in Java_android_cts_rscpp_RSElementTest_testIsCompatible()
269 eb->add(Element::U8_4(mRS), "U8_4", arraySize); in Java_android_cts_rscpp_RSElementTest_testElementBuilder()
Drs_jni_type.cpp87 passed &= testTypeBuilderHelper(mRS, Element::U8_4(mRS)); in Java_android_cts_rscpp_RSTypeTest_testCreate()
Drs_jni_foreach.cpp77 t = Type::create(mRS, Element::U8_4(mRS), x, 0, 0); in Java_android_cts_rscpp_RSForEachTest_testForEach()
Drs_jni.cpp463 sp<ScriptIntrinsicYuvToRGB> syuv = ScriptIntrinsicYuvToRGB::create(mRS, Element::U8_4(mRS));; in Java_android_cts_rscpp_RSYuvTest_yuvTest()

12