Home
last modified time | relevance | path

Searched refs:setX (Results 1 – 25 of 52) sorted by relevance

123

/cts/tests/tests/renderscript/src/android/renderscript/cts/
DForEachTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); in testForEach()
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); in testForEach()
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); in testForEach()
96 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); in testForEach()
98 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); in testForEach()
112 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); in testForEach()
114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
128 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create(); in testForEach()
130 t = new Type.Builder(mRS, Element.U16(mRS)).setX(x).create(); in testForEach()
[all …]
DKernelTest.java59 Type t = new Type.Builder(mRS, Element.I8(mRS)).setX(x).create(); in testForEach()
66 t = new Type.Builder(mRS, Element.U8(mRS)).setX(x).create(); in testForEach()
80 t = new Type.Builder(mRS, Element.I8_2(mRS)).setX(x).create(); in testForEach()
82 t = new Type.Builder(mRS, Element.U8_2(mRS)).setX(x).create(); in testForEach()
96 t = new Type.Builder(mRS, Element.I8_3(mRS)).setX(x).create(); in testForEach()
98 t = new Type.Builder(mRS, Element.U8_3(mRS)).setX(x).create(); in testForEach()
112 t = new Type.Builder(mRS, Element.I8_4(mRS)).setX(x).create(); in testForEach()
114 t = new Type.Builder(mRS, Element.U8_4(mRS)).setX(x).create(); in testForEach()
128 t = new Type.Builder(mRS, Element.I16(mRS)).setX(x).create(); in testForEach()
130 t = new Type.Builder(mRS, Element.U16(mRS)).setX(x).create(); in testForEach()
[all …]
DTypeTest.java27 b.setX(x).setY(y); in testBuilderSizes()
92 b.setX(x).setY(y); in testGetCount()
102 Type t = b.setX(8).setY(1).create(); in testGetCount()
106 t = b.setX(8).setY(8).create(); in testGetCount()
110 t = b.setX(8).setY(4).create(); in testGetCount()
114 t = b.setX(4).setY(8).create(); in testGetCount()
117 t = b.setX(7).setY(1).create(); in testGetCount()
121 t = b.setX(7).setY(3).create(); in testGetCount()
128 b.setX(1); in testGetElement()
134 b.setX(3); in testGetX()
[all …]
DLaunchClip.java69 tb.setX(mDimX); in setup()
170 tb.setX(ax); in makeAdapter()
180 a.setX(ox); in makeAdapter()
197 sc.setX(9, 77); in testWrite1D()
208 sc.setX(9, 77); in testWrite1DAdapter1D()
221 sc.setX(9, 77); in testWrite2D()
233 sc.setX(9, 77); in testWrite2DAdapter1D()
246 sc.setX(9, 77); in testWrite2DAdapter2D()
260 sc.setX(9, 37); in testWrite3D()
273 sc.setX(9, 37); in testWrite3DAdapter1D()
[all …]
DAllocationCopyPaddedTest.java35 typeBuilder.setX(width); in test_AllocationPadded_Byte3_1D()
64 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Byte3_2D()
94 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Byte3_3D()
125 typeBuilder.setX(width); in test_AllocationPadded_Short3_1D_Helper()
162 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Short3_2D_Helper()
200 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Short3_3D_Helper()
236 typeBuilder.setX(width); in test_AllocationPadded_Int3_1D()
268 typeBuilder.setX(width).setY(height); in test_AllocationPadded_Int3_2D()
301 typeBuilder.setX(w).setY(h).setZ(d); in test_AllocationPadded_Int3_3D()
332 typeBuilder.setX(width); in test_AllocationPadded_Float3_1D()
[all …]
DVoidPtr.java32 Type t = typeBuilder.setX(1).create(); in setupVoidPtr()
67 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidOutInt()
95 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidOutChar()
124 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidInInt()
155 Type t = typeBuilder.setX(10).setY(15).create(); in testVoidInChar()
DAllocationTest.java47 typeBuilder.setX(x).setY(y); in createTypedHelper()
59 Allocation.createTyped(mRS, typeBuilder.setX(8).create(), in createTypedTextureHelper()
80 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(1).create(), in createTypedTextureHelper()
83 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(3).create(), in createTypedTextureHelper()
86 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(7).create(), in createTypedTextureHelper()
91 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(1).create(), in createTypedTextureHelper()
95 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(3).create(), in createTypedTextureHelper()
99 Allocation.createTyped(mRS, typeBuilder.setX(7).setY(7).create(), in createTypedTextureHelper()
273 b.setX(8).setY(8); in testAllocationMipmapControl()
281 b.setX(8).setY(8).setFaces(true); in testCubemapFaces()
[all …]
DAllocationCopyToTest.java45 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Byte()
82 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Short_Helper()
130 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Int()
167 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Float()
204 typeBuilder.setX(width); in test_Allocationcopy1DRangeTo_Long()
243 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Byte()
277 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Short_Helper()
322 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Int()
356 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Float()
390 typeBuilder.setX(width).setY(height); in test_Allocationcopy2DRangeTo_Long()
[all …]
DBaseObjTest.java29 Type T = TB.setX(1).create(); in testBaseObj()
40 T = TB.setX(2).create(); in testBaseObj()
DSingleSourceForEachTest.java45 i32TypeBuilder.setX(X).setY(Y); in setUp()
103 sc.setX(0, X); in testKernelLaunchWithOptions()
117 sc.setX(0, X); in testAllocationlessKernelLaunch()
DrsAllocationCopyTest.java39 typeBuilder.setX(width); in test_rsAllocationCopy1D_Byte()
86 typeBuilder.setX(width); in test_rsAllocationCopy1D_Short()
133 typeBuilder.setX(width); in test_rsAllocationCopy1D_Int()
180 typeBuilder.setX(width); in test_rsAllocationCopy1D_Float()
228 typeBuilder.setX(width); in test_rsAllocationCopy1D_Long()
277 typeBuilder.setX(width).setY(height); in test_rsAllocationCopy2D_Byte()
333 typeBuilder.setX(width).setY(height); in test_rsAllocationCopy2D_Short()
389 typeBuilder.setX(width).setY(height); in test_rsAllocationCopy2D_Int()
445 typeBuilder.setX(width).setY(height); in test_rsAllocationCopy2D_Float()
501 typeBuilder.setX(width).setY(height); in test_rsAllocationCopy2D_Long()
DSampleTest.java72 mAlloc_RGBA_1D = createAlloc(b.setX(8).create()); in setUp()
73 mAlloc_RGBA_2D = createAlloc(b.setX(8).setY(8).create()); in setUp()
DDebugContext.java51 Type t = typeBuilder.setX(1).create(); in setupDebugContext()
132 typeBuilder.setX(Width); in SetupAllocationCopyTests()
134 typeBuilder.setX(Width).setY(Height); in SetupAllocationCopyTests()
442 typeBuilder1.setX(width); in testDebugContextRsAllocationCopy2D_Short_WrongD()
446 typeBuilder2.setX(width).setY(height); in testDebugContextRsAllocationCopy2D_Short_WrongD()
DTestCtxDim.java29 typeBuilder.setX(X); in test()
DIntrinsicBase.java77 tb.setX(w); in makeAllocation()
144 lo.setX(x, x2); in makeClipper()
DScriptGroupTest.java45 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupSingleKernel()
79 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupDisconnectedKernel()
121 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupFieldConnection()
167 Type connect = new Type.Builder(mRS, Element.U8_4(mRS)).setX(bDimX).setY(bDimY).create(); in testScriptGroupDisconnectedDAG()
228 Type connect = new Type.Builder(mRS, Element.I32(mRS)).setX(bDimX).create(); in testScriptGroupTorture()
314 Type i32 = new Type.Builder(mRS, Element.I32(mRS)).setX(1).create(); in testScriptGroupSharedGlobal()
315 Type u32 = new Type.Builder(mRS, Element.U32(mRS)).setX(2).create(); in testScriptGroupSharedGlobal()
DYuvTest.java148 tb.setX(width); in test_NV21()
199 tb.setX(width); in test_YV12()
251 tb.setX(width); in test_YV12_Float4()
298 tb.setX(width); in test_NV21_Float4()
/cts/tests/tests/rscpp/librscpptest/
Drs_jni_type.cpp50 b.setX(x); in testTypeBuilderHelper()
120 b.setX(x); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
131 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
138 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
144 b.setX(8); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
150 b.setX(4); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
155 b.setX(7); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
161 b.setX(7); in Java_android_cts_rscpp_RSTypeTest_testGetCount()
187 b.setX(4); in Java_android_cts_rscpp_RSTypeTest_testGet()
/cts/tests/tests/rsblas/src/android/renderscript/cts/
DBNNMTest.java133 Type a_type = builder.setX(k).setY(m).create(); in runBNNM()
134 Type b_type = builder.setX(k).setY(n).create(); in runBNNM()
135 Type c_type = builder.setX(n).setY(m).create(); in runBNNM()
451 Type a_type = builder.setX(k).setY(m).create(); in testExceptionHandling()
452 Type b_type = builder.setX(k).setY(n).create(); in testExceptionHandling()
453 Type c_type = builder.setX(n).setY(m).create(); in testExceptionHandling()
/cts/tests/tests/rscpp/src/android/cts/rscpp/
DRSColorMatrixTest.java55 build.setX(X); in testRSColorMatrix0()
86 build.setX(X); in testRSColorMatrix1()
120 build.setX(X); in testRSColorMatrix2()
152 build.setX(X); in testRSColorMatrix3()
183 build.setX(X); in testRSColorMatrix4()
DRS3DLUTTest.java52 build.setX(X); in testRSLUT()
59 buildCube.setX(lutSize); in testRSLUT()
DRSBlurTest.java44 build.setX(X); in testRSBlurOneChannel()
73 build.setX(X); in testRSBlurFourChannels()
DRSConvolveTest.java55 build.setX(X); in testConvolve3x3()
112 build.setX(X); in testConvolve5x5()
/cts/tests/tests/renderscriptlegacy/src/android/renderscriptlegacy/cts/
DLeakTest.java62 Type t = new Type.Builder(mRS, Element.I32(mRS)).setX(x).create(); in testForLeaks()
/cts/tests/tests/animation/src/android/animation/cts/
DShapeHolder.java44 public void setX(float value) { in setX() method in ShapeHolder

123