Home
last modified time | relevance | path

Searched refs:mAllocSrc (Results 1 – 9 of 9) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DIntrinsic3DLut.java99 mIntrinsic.forEach(mAllocSrc, mAllocDst); in test1()
100 mScript.forEach_root(mAllocSrc, mAllocRef); in test1()
103 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test1()
113 mIntrinsic.forEach(mAllocSrc, mAllocDst); in test2()
114 mScript.forEach_root(mAllocSrc, mAllocRef); in test2()
117 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test2()
128 mIntrinsic.forEach(mAllocSrc, mAllocDst, lo); in test1C()
129 mScript.forEach_root(mAllocSrc, mAllocRef, lo); in test1C()
132 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test1C()
144 mIntrinsic.forEach(mAllocSrc, mAllocDst, lo); in test2C()
[all …]
DIntrinsicBlur.java59 mIntrinsic.setInput(mAllocSrc); in initTest()
77 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) { in copyInput()
78 mScript.forEach_convert1_uToF(mAllocSrc, mScratchPixelsAllocation1); in copyInput()
81 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) { in copyInput()
82 mScript.forEach_convert4_uToF(mAllocSrc, mScratchPixelsAllocation1); in copyInput()
89 if (mAllocSrc.getType().getElement().isCompatible(Element.U8(mRS))) { in copyOutput()
93 if (mAllocSrc.getType().getElement().isCompatible(Element.U8_4(mRS))) { in copyOutput()
109 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testU8_1()
123 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testU8_4()
139 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testU8_1C()
[all …]
DIntrinsicLut.java70 mIntrinsic.forEach(mAllocSrc, mAllocDst); in test()
71 mScript.forEach_root(mAllocSrc, mAllocRef); in test()
74 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test()
85 mIntrinsic.forEach(mAllocSrc, mAllocDst, lo); in test1C()
86 mScript.forEach_root(mAllocSrc, mAllocRef, lo); in test1C()
89 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test1C()
DIntrinsicBase.java29 protected Allocation mAllocSrc; field in IntrinsicBase
46 if (mAllocSrc != null) { in tearDown()
47 mAllocSrc.destroy(); in tearDown()
96 mAllocSrc = makeAllocation(w, h, e); in makeSource()
111 mAllocSrc.copyFromUnchecked(f); in makeSource()
123 mAllocSrc.copyFromUnchecked(f); in makeSource()
DIntrinsicConvolve3x3.java40 si.setInput(mAllocSrc); in testConvolve3()
45 sr.set_gIn(mAllocSrc); in testConvolve3()
50 mAllocRef.copyFrom(mAllocSrc); in testConvolve3()
51 mAllocDst.copyFrom(mAllocSrc); in testConvolve3()
87 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testConvolve3()
124 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testConvolve3()
161 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testConvolve3()
DIntrinsicConvolve5x5.java27 si.setInput(mAllocSrc); in test5()
30 mAllocRef.copyFrom(mAllocSrc); in test5()
31 mAllocDst.copyFrom(mAllocSrc); in test5()
38 sr.set_gIn(mAllocSrc); in test5()
72 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in test5()
DIntrinsicColorMatrix.java69 mSi.forEach(mAllocSrc, mAllocDst, makeClipper(x1, y1, x2, y2)); in subtest()
71 mSi.forEach(mAllocSrc, mAllocDst); in subtest()
73 mSr.invoke_reference(mat, add, mAllocSrc, mAllocRef, x1, y1, x2, y2); in subtest()
76 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in subtest()
DIntrinsicResize.java46 si.setInput(mAllocSrc); in testResize()
52 sr.set_gIn(mAllocSrc); in testResize()
89 mVerify.invoke_verify(mAllocRef, mAllocDst, mAllocSrc); in testResize()
93 mVerify.invoke_verify(mAllocRef, mAllocSrc, mAllocSrc); in testResize()
94 mVerify.invoke_verify(mAllocDst, mAllocSrc, mAllocSrc); in testResize()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DIntrinsicBase.java29 protected Allocation mAllocSrc; field in IntrinsicBase