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/
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()
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()
81 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectType() local
85 forEach(TEST_ID_TYPE, mIn, mOut); in testclearObjectType()
97 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectAllocation() local
98 Allocation allocation = Allocation.createTyped(mRS, mIn.getType()); in testclearObjectAllocation()
101 forEach(TEST_ID_ALLOCATION, mIn, mOut); in testclearObjectAllocation()
114 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectSampler() local
117 forEach(TEST_ID_SAMPLER, mIn, mOut); in testclearObjectSampler()
[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()
DIsObjectTest.java29 private Allocation mIn; field in IsObjectTest
64 mIn = filed.getAllocation(); in testIsObjectElement()
67 ms_is_object.forEach_is_object_element(mIn, mOut); in testIsObjectElement()
84 mIn = filed.getAllocation(); in testIsObjectType()
88 ms_is_object.forEach_is_object_type(mIn, mOut); in testIsObjectType()
108 mIn = filed.getAllocation(); in testIsObjectAllocation()
112 ms_is_object.forEach_is_object_allocation(mIn, mOut); in testIsObjectAllocation()
131 mIn = filed.getAllocation(); in testIsObjectSampler()
135 ms_is_object.forEach_is_object_sampler(mIn, mOut); in testIsObjectSampler()
153 mIn = filed.getAllocation(); in testIsObjectScript()
[all …]
DSetObjectTest.java28 private Allocation mIn; field in SetObjectTest
63 mIn = filed.getAllocation(); in testSetObjectElement()
66 ms_set.forEach_set_object_element(mIn, mOut); in testSetObjectElement()
83 mIn = filed.getAllocation(); in testSetObjectType()
87 ms_set.forEach_set_object_type(mIn, mOut); in testSetObjectType()
106 mIn = filed.getAllocation(); in testSetObjectAllocation()
110 ms_set.forEach_set_object_allocation(mIn, mOut); in testSetObjectAllocation()
128 mIn = filed.getAllocation(); in testSetObjectSampler()
132 ms_set.forEach_set_object_sampler(mIn, mOut); in testSetObjectSampler()
150 mIn = filed.getAllocation(); in testSetObjectScript()
[all …]
DallocationCopy2DRange.rs7 rs_allocation mIn;
12 width, height, mIn, 0, 0, 0,
DRsPackColorTo8888Test.java35 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
38 script_f32.forEach_pack_color_to_8888_rgb(mIn, mOut); in forEach()
41 script_f32.forEach_pack_color_to_8888_rgba(mIn, mOut); in forEach()
44 script_f32.forEach_pack_color_to_8888_f32_3(mIn, mOut); in forEach()
47 script_f32.forEach_pack_color_to_8888_f32_4(mIn, mOut); in forEach()
DRsUnpackColor8888Test.java29 public void forEach(int testId, Allocation mIn, Allocation mOut) throws RSRuntimeException { in forEach() argument
30 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()