Home
last modified time | relevance | path

Searched refs:I32 (Results 1 – 25 of 36) sorted by relevance

12

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DClearObjectTest.java64 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testClearObjectElement()
65 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testClearObjectElement()
83 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectType()
84 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectType()
102 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectAllocation()
103 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectAllocation()
123 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectSampler()
124 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectSampler()
142 Allocation mIn = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectScript()
143 Allocation mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testclearObjectScript()
DIsObjectTest.java78 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testIsObjectElement()
98 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testIsObjectType()
122 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testIsObjectAllocation()
145 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testIsObjectSampler()
167 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testIsObjectScript()
DSetObjectTest.java79 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testSetObjectElement()
99 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testSetObjectType()
122 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testSetObjectAllocation()
144 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testSetObjectSampler()
166 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum); in testSetObjectScript()
DAllocationResize.java41 mIn = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE/2); in testResize()
42 mOut = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE*2); in testResize()
DVoidPtr.java31 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in setupVoidPtr()
66 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testVoidOutInt()
123 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testVoidInInt()
DBaseObjTest.java27 Element E = Element.I32(mRS); in testBaseObj()
DGetAllocationTest.java35 Allocation mTemp = Allocation.createSized(mRS, Element.I32(mRS), INPUTSIZE); in testGetAllocation()
DScriptTest.java50 Type.Builder tb = new Type.Builder(mRS, Element.I32(mRS)); in testScript()
DAllocationCopy2DRangeTest.java43 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testAllocationCopy2DRange()
DGlobalSync.java30 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in setupGlobalSync()
DVLoadTest.java95 walkAlloc = Allocation.createSized(mRS, Element.I32(mRS), i); in createWalk()
275 testSetup(Type.createX(mRS, Element.I32(mRS), w)); in testVload_int()
291 testSetup(Type.createX(mRS, Element.I32(mRS), w)); in testVload_int_relaxed()
DReduceTest.java194 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testAddInt2D()
395 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testFz2()
418 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testFz3()
511 Allocation[] inputs = createInputAllocations(Element.I32(mRS), 3); in testBadSumXorInputDimensionMismatch()
568 Allocation inputI32 = Allocation.createSized(mRS, Element.I32(mRS), 1); in testBadSumXorInputWrongType()
DElementTest.java87 assertTrue(Element.I32(mRS) != null); in testPrebuiltElements()
202 Element[] I32 = { Element.I32(mRS) }; in testIsCompatible() local
249 F64, I16, I32, I64, I8, in testIsCompatible()
304 eb.add(Element.I32(mRS), "I32", arraySize); in testElementBuilder()
374 assertFalse(Element.I32(mRS).isComplex()); in testIsComplex()
DAllocationTest.java131 createTypedHelper(Element.I32(mRS)); in testCreateTyped()
174 createSizedHelper(Element.I32(mRS)); in testCreateSized()
377 Allocation A = Allocation.createSized(mRS, Element.I32(mRS), nElems); in helperIntCopy()
590 Type.Builder b = new Type.Builder(mRS, Element.I32(mRS)); in helperIntCopy2D()
738 Type.Builder b2 = new Type.Builder(mRS, Element.I32(mRS)); in testCopyFromAllocation()
785 Type.Builder b = new Type.Builder(mRS, Element.I32(mRS)); in testSetElementAt()
813 Type.Builder b = new Type.Builder(mRS, Element.I32(mRS)); in testSetElementAt2D()
DSingleSourceForEachTest.java44 Type.Builder i32TypeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in setUp()
DAtomicTest.java46 mSrc = Allocation.createTyped(mRS, Type.createXY(mRS, Element.I32(mRS), sz, sz)); in initS()
47 mReturn = Allocation.createSized(mRS, Element.I32(mRS), 1); in initS()
DScriptGroupTest.java228 Type connect = new Type.Builder(mRS, Element.I32(mRS)).setX(bDimX).create(); in testScriptGroupTorture()
229 Type compareType = new Type.Builder(mRS, Element.I32(mRS)).create(); in testScriptGroupTorture()
314 Type i32 = new Type.Builder(mRS, Element.I32(mRS)).setX(1).create(); in testScriptGroupSharedGlobal()
DIntrinsicHistogram.java52 default: e2 = Element.I32(mRS); break; in createAllocations()
Dvector.rscript125 rsDebug("Testing I32", 0);
DKernelTest.java192 t = new Type.Builder(mRS, Element.I32(mRS)).setX(x).create(); in testForEach()
524 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testMultipleForEach()
548 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS)); in testNoRoot()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_object.cpp50 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectElement()
78 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectType()
105 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectAllocation()
106 sp<Allocation> mIn = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectAllocation()
136 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectSampler()
165 sp<Allocation> mOut = Allocation::createSized(mRS, Element::I32(mRS), ObjectNum); in Java_android_cts_rscpp_RSObjectTest_testClearObjectScript()
Drs_jni_script.cpp59 sp<const Type> t = Type::create(mRS, Element::I32(mRS), 8, 0, 0); in Java_android_cts_rscpp_RSScriptTest_testSet()
99 sp<const Type> t = Type::create(mRS, Element::I32(mRS), 1, 0, 0); in Java_android_cts_rscpp_RSScriptTest_testInstance()
Drs_jni_element.cpp122 passed &= (Element::I32(mRS) != nullptr); in Java_android_cts_rscpp_RSElementTest_testPrebuiltElements()
179 sp<const Element> I32 = Element::I32(mRS); in Java_android_cts_rscpp_RSElementTest_testIsCompatible() local
204 F32_3, F32_4, F64, I16, I32, I64, I8, in Java_android_cts_rscpp_RSElementTest_testIsCompatible()
258 eb->add(Element::I32(mRS), "I32", arraySize); in Java_android_cts_rscpp_RSElementTest_testElementBuilder()
Drs_jni_foreach.cpp115 t = Type::create(mRS, Element::I32(mRS), x, 0, 0); in Java_android_cts_rscpp_RSForEachTest_testForEach()
297 sp<const Type> t = Type::create(mRS, Element::I32(mRS), X, Y, 0); in Java_android_cts_rscpp_RSForEachTest_testMultipleForEach()
331 sp<const Type> t = Type::create(mRS, Element::I32(mRS), X, Y, 0); in Java_android_cts_rscpp_RSForEachTest_testNoRoot()
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
DLeakTest.java62 Type t = new Type.Builder(mRS, Element.I32(mRS)).setX(x).create(); in testForLeaks()

12