Home
last modified time | relevance | path

Searched refs:mIn (Results 1 – 11 of 11) sorted by relevance

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DClearObjectTest.java42 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
64 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testClearObjectElement() local
68 forEach(TEST_ID_ELEMENT, mIn, mOut); in testClearObjectElement()
77 mIn.destroy(); in testClearObjectElement()
84 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectType() local
88 forEach(TEST_ID_TYPE, mIn, mOut); in testclearObjectType()
97 mIn.destroy(); in testclearObjectType()
103 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectAllocation() local
104 Allocation allocation = Allocation.createTyped(mRS, mIn.getType()); in testclearObjectAllocation()
107 forEach(TEST_ID_ALLOCATION, mIn, mOut); in testclearObjectAllocation()
[all …]
DInitTest.java24 private Allocation mIn; field in InitTest
29 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
30 script.forEach_root(mIn, mOut); in forEach()
38 mIn = Allocation.createSized(mRS, Element.F32(mRS), INPUTSIZE); in testInitTest()
45 mIn.copy1DRangeFrom(0, INPUTSIZE, in); in testInitTest()
48 forEach(0, mIn, mOut); in testInitTest()
54 mIn.destroy(); in testInitTest()
DIsObjectTest.java29 private Allocation mIn; field in IsObjectTest
55 if (mIn != null) { in tearDown()
56 mIn.destroy(); in tearDown()
77 mIn = filed.getAllocation(); in testIsObjectElement()
80 ms_is_object.forEach_is_object_element(mIn, mOut); in testIsObjectElement()
97 mIn = filed.getAllocation(); in testIsObjectType()
101 ms_is_object.forEach_is_object_type(mIn, mOut); in testIsObjectType()
121 mIn = filed.getAllocation(); in testIsObjectAllocation()
125 ms_is_object.forEach_is_object_allocation(mIn, mOut); in testIsObjectAllocation()
144 mIn = filed.getAllocation(); in testIsObjectSampler()
[all …]
DSetObjectTest.java28 private Allocation mIn; field in SetObjectTest
56 if (mIn != null) { in tearDown()
57 mIn.destroy(); in tearDown()
78 mIn = field.getAllocation(); in testSetObjectElement()
81 ms_set.forEach_set_object_element(mIn, mOut); in testSetObjectElement()
98 mIn = field.getAllocation(); in testSetObjectType()
102 ms_set.forEach_set_object_type(mIn, mOut); in testSetObjectType()
121 mIn = field.getAllocation(); in testSetObjectAllocation()
125 ms_set.forEach_set_object_allocation(mIn, mOut); in testSetObjectAllocation()
143 mIn = field.getAllocation(); in testSetObjectSampler()
[all …]
DAllocationResize.java26 private Allocation mIn; field in AllocationResize
31 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
32 mScript.forEach_root(mIn, mOut); in forEach()
41 mIn = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE/2); in testResize()
43 mIn.resize(INPUTSIZE); in testResize()
52 mIn.copy1DRangeFrom(0, INPUTSIZE, inArray); in testResize()
55 forEach(0, mIn, mOut); in testResize()
DallocationCopy2DRange.rs7 rs_allocation mIn;
12 width, height, mIn, 0, 0, 0,
DRsPackColorTo8888Test.java41 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
44 script_f32.forEach_pack_color_to_8888_rgb(mIn, mOut); in forEach()
47 script_f32.forEach_pack_color_to_8888_rgba(mIn, mOut); in forEach()
50 script_f32.forEach_pack_color_to_8888_f32_3(mIn, mOut); in forEach()
53 script_f32.forEach_pack_color_to_8888_f32_4(mIn, mOut); in forEach()
DRsUnpackColor8888Test.java37 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
38 script.forEach_root(mIn, mOut); in forEach()
DLaunchClip.java29 int[] mIn; field in LaunchClip
81 mIn = new int[t.getCount()]; in setup()
DRSBaseCompute.java408 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
412 public void forEach(int testId, Allocation mIn) throws RSRuntimeException { in forEach() argument
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_object.cpp106 sp<Allocation> mIn = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectAllocation() local
107 sp<Allocation> allocation = Allocation::createTyped(mRS, mIn->getType()); in Java_android_cts_rscpp_RSObjectTest_testClearObjectAllocation()