Home
last modified time | relevance | path

Searched refs:I8 (Results 1 – 25 of 26) sorted by relevance

12

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DDebugContext.java184 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_Normal()
281 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_BadSrcLOD()
305 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_BadDstLOD()
330 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_BadCount()
353 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_BadSrcOffset()
377 (RenderScript rs)-> new Type.Builder(rs, Element.I8(rs)), in testDebugContextRsAllocationCopy1D_Byte_BadDstOffset()
DElementTest.java79 assertTrue(Element.I8(mRS) != null); in testPrebuiltElements()
138 eb1.add(Element.I8(mRS), "Test"); in testEquals()
144 eb2.add(Element.I8(mRS), "Test"); in testEquals()
155 eb3.add(Element.I8(mRS), "Test"); in testEquals()
163 eb1.add(Element.I8(mRS), "Another"); in testEquals()
169 eb4.add(Element.I8(mRS), "Test"); in testEquals()
204 Element[] I8 = { Element.I8(mRS) }; in testIsCompatible() local
249 F64, I16, I32, I64, I8, in testIsCompatible()
296 eb.add(Element.I8(mRS), "I8", arraySize); in testElementBuilder()
366 assertFalse(Element.I8(mRS).isComplex()); in testIsComplex()
DAllocationTest.java129 createTypedHelper(Element.I8(mRS)); in testCreateTyped()
172 createSizedHelper(Element.I8(mRS)); in testCreateSized()
327 Allocation A = Allocation.createSized(mRS, Element.I8(mRS), nElems); in helperByteCopy()
477 Allocation srcA = Allocation.createSized(mRS, Element.I8(mRS), nElems); in helperByteAllocationCopy()
478 Allocation dstA = Allocation.createSized(mRS, Element.I8(mRS), nElems); in helperByteAllocationCopy()
534 Type.Builder b = new Type.Builder(mRS, Element.I8(mRS)); in helperByteCopy2D()
651 Type.Builder b = new Type.Builder(mRS, Element.I8(mRS)); in helperByteAllocationCopy2D()
740 Type.Builder b = new Type.Builder(mRS, Element.I8(mRS)); in testCopyFromAllocation()
DIsObjectTest.java46 type = new Type.Builder(mRS, Element.I8(mRS)).setX(1).create(); in setUp()
DSetObjectTest.java45 type = new Type.Builder(mRS, Element.I8(mRS)).setX(1).create(); in setUp()
DClearObjectTest.java82 Type type= new Type.Builder(mRS, Element.I8(mRS)).setX(1).create(); in testclearObjectType()
DVLoadTest.java211 testSetup(Type.createX(mRS, Element.I8(mRS), w)); in testVload_char()
227 testSetup(Type.createX(mRS, Element.I8(mRS), w)); in testVload_char_relaxed()
DAllocationCopyToTest.java44 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_Allocationcopy1DRangeTo_Byte()
242 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_Allocationcopy2DRangeTo_Byte()
425 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_Allocationcopy3DRangeTo_Byte()
660 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_Allocationcopy1DRangeToUnchecked_Byte()
Dvector.rscript73 rsDebug("Testing I8", 0);
DRsAllocationCopyTest.java38 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_RsAllocationCopy1D_Byte()
276 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS)); in test_RsAllocationCopy2D_Byte()
DTypeTest.java59 testTypeBuilderHelper(Element.I8(mRS)); in testTypeBuilder()
DForEachTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
470 t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
DKernelTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
470 t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
DKernelInputTest.java69 Allocation ain = Allocation.createSized(mRS, Element.I8(mRS), 1); in testInputNotModified_char()
70 Allocation tmp = Allocation.createSized(mRS, Element.I8(mRS), 1); in testInputNotModified_char()
DRSBaseCompute.java98 element = Element.I8(rs); in getElement()
DReduceTest.java628 Allocation[] allocs1 = createInputAllocations(Element.I8(mRS), 3); in testBadSillySumInputDimensionMismatch()
DGetSetTest.java293 testSetup(Element.I8(mRS)); in testGetSet_char()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_element.cpp114 passed &= (Element::I8(mRS) != nullptr); in Java_android_cts_rscpp_RSElementTest_testPrebuiltElements()
181 sp<const Element> I8 = Element::I8(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()
250 eb->add(Element::I8(mRS), "I8", arraySize); in Java_android_cts_rscpp_RSElementTest_testElementBuilder()
Drs_jni_object.cpp77 sp<const Type> type= Type::create(mRS, Element::I8(mRS), 1, 0, 0); in Java_android_cts_rscpp_RSObjectTest_testClearObjectType()
Drs_jni_foreach.cpp49 sp<const Type> t = Type::create(mRS, Element::I8(mRS), x, 0, 0); in Java_android_cts_rscpp_RSForEachTest_testForEach()
243 t = Type::create(mRS, Element::I8(mRS), x, 0, 0); in Java_android_cts_rscpp_RSForEachTest_testForEach()
Drs_jni_type.cpp82 passed &= testTypeBuilderHelper(mRS, Element::I8(mRS)); in Java_android_cts_rscpp_RSTypeTest_testCreate()
Drs_jni_allocation.cpp79 createTypedHelper(rs, Element::I8(rs)); in Java_android_cts_rscpp_RSAllocationTest_typedTest()
/cts/tests/tests/security/res/raw/
Dcve_2019_2245.ts1380 …j&���B g4ˊ٠�L:蘔G�"��:,o�m�mL����`�ڹ��$���G�1&.�m�hO�z��5/A�,o��x�L�:��I8 a�f���6`aW$3I�H�3��
Dcve_2018_13925.ts1381 …j&���B g4ˊ٠�L:蘔G�"��:,o�m�mL����`�ڹ��$���G�1&.�m�hO�z��5/A�,o��x�L�:��I8 a�f���6`aW$3I�H�3��
Dcve_2019_2244.ts1381 …j&���B g4ˊ٠�L:蘔G�"��:,o�m�mL����`�ڹ��$���G�1&.�m�hO�z��5/A�,o��x�L�:��I8 a�f���6`aW$3I�H�3��

12