Home
last modified time | relevance | path

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

/cts/tests/camera/src/android/hardware/camera2/cts/rs/
DScriptGraph.java172 byte[] destination = new byte[outputAllocation.getBytesSize()]; in getOutputData()
173 outputAllocation.copyTo(destination); in getOutputData()
175 return destination; in getOutputData()
193 byte[] destination = new byte[inputAllocation.getBytesSize()]; in getInputData()
194 inputAllocation.copyTo(destination); in getInputData()
196 return destination; in getInputData()
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/testtype/
DModuleRepo.java559 List<IModuleDef> source, List<IModuleDef> destination, int count) { in takeModule() argument
567 destination.add(source.remove(source.size() - 1));// Take from the end of the arraylist. in takeModule()