HomeSort by relevance Sort by last modified time
    Searched refs:typeBuilder (Results 1 - 25 of 62) sorted by null

1 2 3

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
TestCtxDim.java 26 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
29 typeBuilder.setX(X);
32 typeBuilder.setY(Y);
35 typeBuilder.setZ(Z);
37 Allocation A = Allocation.createTyped(mRS, typeBuilder.create());
AllocationCopyPaddedTest.java 34 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
35 typeBuilder.setX(width);
36 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
62 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
63 typeBuilder.setX(width).setY(height);
64 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
91 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
92 typeBuilder.setX(w).setY(h).setZ(d);
93 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
121 Type.Builder typeBuilder = new Type.Builder(mRS, element)
    [all...]
AllocationCopyToTest.java 36 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS));
37 typeBuilder.setX(width);
38 alloc = Allocation.createTyped(mRS, typeBuilder.create());
73 Type.Builder typeBuilder = new Type.Builder(mRS, element);
74 typeBuilder.setX(width);
75 alloc = Allocation.createTyped(mRS, typeBuilder.create());
121 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
122 typeBuilder.setX(width);
123 alloc = Allocation.createTyped(mRS, typeBuilder.create());
158 Type.Builder typeBuilder = new Type.Builder(mRS, Element.F32(mRS))
    [all...]
VoidPtr.java 32 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
33 Type t = typeBuilder.setX(1).create();
53 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
54 Type t = typeBuilder.setX(10).setY(15).create();
81 Type.Builder typeBuilder = new Type.Builder(mRS, Element.U8(mRS));
82 Type t = typeBuilder.setX(10).setY(15).create();
110 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
111 Type t = typeBuilder.setX(10).setY(15).create();
141 Type.Builder typeBuilder = new Type.Builder(mRS, Element.U8(mRS));
142 Type t = typeBuilder.setX(10).setY(15).create()
    [all...]
rsAllocationCopyTest.java 38 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8(mRS));
39 typeBuilder.setX(width);
40 Allocation aIn = Allocation.createTyped(mRS, typeBuilder.create());
41 Allocation aOut = Allocation.createTyped(mRS, typeBuilder.create());
85 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I16(mRS));
86 typeBuilder.setX(width);
87 Allocation aIn = Allocation.createTyped(mRS, typeBuilder.create());
88 Allocation aOut = Allocation.createTyped(mRS, typeBuilder.create());
132 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
133 typeBuilder.setX(width)
    [all...]
AllocationCopy2DRangeTest.java 43 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I32(mRS));
44 typeBuilder.setX(width).setY(height);
45 mInAllocation = Allocation.createTyped(mRS, typeBuilder.create());
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_alloc.java 32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 typeBuilder.setX(X).setY(Y);
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
45 typeBuilder.setX(X).setY(Y).setFaces(true);
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
48 typeBuilder.setFaces(false).setMipmaps(true);
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
51 typeBuilder.setFaces(true).setMipmaps(true);
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_kernel.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
UT_alloc_copyPadded.java 91 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
92 typeBuilder.setX(width);
93 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
123 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
124 typeBuilder.setX(width).setY(height);
125 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
156 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
157 typeBuilder.setX(w).setY(h).setZ(d);
158 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
190 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I16_3(mRS))
    [all...]
UT_apitest.java 36 Type.Builder typeBuilder = new Type.Builder(pRS, elem);
44 typeBuilder.setX(x).setY(y);
45 Type type = typeBuilder.create();
UT_foreach.java 33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X).setY(Y);
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_foreach_bounds.java 33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X).setY(Y);
39 A = Allocation.createTyped(RS, typeBuilder.create());
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_alloc.java 32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 typeBuilder.setX(X).setY(Y);
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
45 typeBuilder.setX(X).setY(Y).setFaces(true);
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
48 typeBuilder.setFaces(false).setMipmaps(true);
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
51 typeBuilder.setFaces(true).setMipmaps(true);
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_kernel.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
UT_alloc_copyPadded.java 91 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
92 typeBuilder.setX(width);
93 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
123 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
124 typeBuilder.setX(width).setY(height);
125 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
156 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I8_3(mRS));
157 typeBuilder.setX(w).setY(h).setZ(d);
158 Allocation alloc = Allocation.createTyped(mRS, typeBuilder.create());
190 Type.Builder typeBuilder = new Type.Builder(mRS, Element.I16_3(mRS))
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_alloc.java 32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 typeBuilder.setX(X); // Only build a 1-D version of this
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
45 typeBuilder.setX(X).setY(Y).setFaces(true);
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
48 typeBuilder.setFaces(false).setMipmaps(true);
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
51 typeBuilder.setFaces(true).setMipmaps(true);
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_check_dims.java 36 Type.Builder typeBuilder = new Type.Builder(RS, Element.U8(RS));
37 typeBuilder.setX(1);
38 Allocation AFailed = Allocation.createTyped(RS, typeBuilder.create());
45 typeBuilder = new Type.Builder(RS, Element.I32(RS));
48 typeBuilder.setX(X).setY(Y);
49 mA = Allocation.createTyped(RS, typeBuilder.create());
UT_kernel3d.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
41 typeBuilder.setY(Y);
44 typeBuilder.setZ(Z);
46 A = Allocation.createTyped(RS, typeBuilder.create());
48 B = Allocation.createTyped(RS, typeBuilder.create());
UT_kernel2d.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
41 typeBuilder.setY(Y);
43 A = Allocation.createTyped(RS, typeBuilder.create());
45 B = Allocation.createTyped(RS, typeBuilder.create());
UT_kernel2d_oldstyle.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
41 typeBuilder.setY(Y);
43 A = Allocation.createTyped(RS, typeBuilder.create());
45 B = Allocation.createTyped(RS, typeBuilder.create());
UT_ctxt_default.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
40 A = Allocation.createTyped(RS, typeBuilder.create());
42 B = Allocation.createTyped(RS, typeBuilder.create());
UT_kernel.java 35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
38 typeBuilder.setX(X);
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
UT_static_globals.java 35 Type.Builder typeBuilder = new Type.Builder(pRS, Element.I32(pRS));
36 Allocation A = Allocation.createTyped(pRS, typeBuilder.setX(1).create());
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_alloc.java 32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 typeBuilder.setX(X).setY(Y);
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
45 typeBuilder.setX(X).setY(Y).setFaces(true);
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
48 typeBuilder.setFaces(false).setMipmaps(true);
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
51 typeBuilder.setFaces(true).setMipmaps(true);
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UT_alloc.java 32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 typeBuilder.setX(X).setY(Y);
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
45 typeBuilder.setX(X).setY(Y).setFaces(true);
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
48 typeBuilder.setFaces(false).setMipmaps(true);
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
51 typeBuilder.setFaces(true).setMipmaps(true);
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]

Completed in 1351 milliseconds

1 2 3