Home
last modified time | relevance | path

Searched refs:outputAllocation (Results 1 – 2 of 2) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DReduceTest.java250 Allocation outputAllocation = Allocation.createSized(mRS, Element.F16_2(mRS), 1); in findMinAndMaxHalf() local
252 mScript.invoke_findMinAndMaxHalf(outputAllocation, inputAllocation); in findMinAndMaxHalf()
255 outputAllocation.copyTo(outputArray); in findMinAndMaxHalf()
289 Allocation outputAllocation = Allocation.createSized(mRS, Element.F16_2(mRS), 2); in findMinAndMaxHalf2() local
291 mScript.invoke_findMinAndMaxHalf2(outputAllocation, inputAllocation); in findMinAndMaxHalf2()
294 outputAllocation.copyTo(outputArray); in findMinAndMaxHalf2()
297 outputAllocation.destroy(); in findMinAndMaxHalf2()
439 … Allocation outputAllocation = Allocation.createSized(mRS, Element.U32(mRS), histogramBucketCount); in histogram() local
442 scriptHsg.setOutput(outputAllocation); in histogram()
446 outputAllocation.copyTo(outputArrayMistyped); in histogram()
[all …]
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DScriptGraph.java170 Allocation outputAllocation = getOutputAllocation(); in getOutputData() local
172 byte[] destination = new byte[outputAllocation.getBytesSize()]; in getOutputData()
173 outputAllocation.copyTo(destination); in getOutputData()