Searched refs:xlen (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | ReduceTest.java | 88 private Allocation createInputAllocation(Element elt, int xlen, int ylen, int zlen) { in createInputAllocation() argument 89 assertTrue(xlen >= 1); in createInputAllocation() 95 alloc = Allocation.createTyped(mRS, Type.createXYZ(mRS, elt, xlen, ylen, zlen)); in createInputAllocation() 97 alloc = Allocation.createTyped(mRS, Type.createXY(mRS, elt, xlen, ylen)); in createInputAllocation() 99 alloc = Allocation.createSized(mRS, elt, xlen); in createInputAllocation() 118 for (int xlen = 1; xlen <= max; ++xlen) { in createInputAllocations() 122 alloc[count++] = createInputAllocation(elt, xlen, ylen, zlen); in createInputAllocations()
|