HomeSort by relevance Sort by last modified time
    Searched refs:Allocation (Results 226 - 250 of 564) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
LaunchTest.java 24 private Allocation mAllocationX;
25 private Allocation mAllocationXY;
33 mAllocationX = Allocation.createSized(rs, Element.U8(rs), dim);
37 mAllocationXY = Allocation.createTyped(rs, tb.create());
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Contrast.java 21 import android.renderscript.Allocation;
Exposure.java 21 import android.renderscript.Allocation;
Shadows.java 21 import android.renderscript.Allocation;
Grain.java 21 import android.renderscript.Allocation;
33 private Allocation mNoise;
34 private Allocation mNoise2;
76 mNoise = Allocation.createTyped(mRS, tb.create());
77 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Contrast.java 21 import android.renderscript.Allocation;
Exposure.java 21 import android.renderscript.Allocation;
Blur25G.java 22 import android.renderscript.Allocation;
40 private Allocation mScratchPixelsAllocation1;
41 private Allocation mScratchPixelsAllocation2;
70 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
71 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
Grain.java 21 import android.renderscript.Allocation;
33 private Allocation mNoise;
34 private Allocation mNoise2;
81 mNoise = Allocation.createTyped(mRS, tb.create());
82 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 25 private Allocation ain;
26 private Allocation aout;
31 ain = Allocation.createSized(rs, Element.U32(mRS), 10000);
32 aout = Allocation.createSized(rs, Element.U32(mRS), 10000);
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_apitest.java 46 Allocation alloc = Allocation.createTyped(pRS, type);
47 Allocation allocDst = Allocation.createTyped(pRS, type);
UT_array_alloc.java 27 super(rstc, "Array Allocation", ctx);
37 Allocation[] Arr = new Allocation[dimX];
41 Allocation A = Allocation.createTyped(pRS, T);
UT_kernel.java 26 private Allocation A;
27 private Allocation B;
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_array_alloc.java 27 super(rstc, "Array Allocation", ctx);
37 Allocation[] Arr = new Allocation[dimX];
41 Allocation A = Allocation.createTyped(pRS, T);
UT_check_dims.java 27 Allocation mA;
38 Allocation AFailed = Allocation.createTyped(RS, typeBuilder.create());
49 mA = Allocation.createTyped(RS, typeBuilder.create());
UT_kernel.java 26 private Allocation A;
27 private Allocation B;
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
  /frameworks/rs/
rsScriptC.h 47 const Allocation * ain,
48 Allocation * aout,
55 const Allocation ** ains,
57 Allocation * aout,
rsScriptIntrinsic.cpp 37 mSlots = new ObjectBaseRef<Allocation>[2];
61 const Allocation * ain,
62 Allocation * aout,
72 const Allocation** ains,
74 Allocation* aout,
  /frameworks/rs/tests/cppallocation/
compute.cpp 33 sp<Allocation> ain = Allocation::createTyped(rs, t);
34 sp<Allocation> aout = Allocation::createTyped(rs, t);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsic3DLUT.java 25 * allocation. The 8 nearest values are sampled and linearly interpolated. The
31 private Allocation mLUT;
64 * Sets the {@link android.support.v8.renderscript.Allocation} to be used as
72 public void setLUT(Allocation lut) {
92 * @param ain Input allocation
93 * @param aout Output allocation
95 public void forEach(Allocation ain, Allocation aout) {
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
IsObjectTest.java 20 import android.renderscript.Allocation;
29 private Allocation mIn;
30 private Allocation mOut;
34 Allocation allocation; field in class:IsObjectTest
47 allocation = Allocation.createTyped(mRS, type);
65 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
85 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
105 mItem.allocation = allocation
    [all...]
SetObjectTest.java 20 import android.renderscript.Allocation;
28 private Allocation mIn;
29 private Allocation mOut;
33 Allocation allocation; field in class:SetObjectTest
46 allocation = Allocation.createTyped(mRS, type);
64 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
84 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
103 mItem.allocation = allocation
    [all...]
GlobalSync.java 19 import android.renderscript.Allocation;
25 Allocation AFailed;
27 Allocation AIn;
33 AFailed = Allocation.createTyped(mRS, t);
39 AIn = Allocation.createTyped(mRS, t);
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/
BitmapUtils.java 20 import android.renderscript.Allocation;
48 Allocation sums = Allocation.createSized(rs, Element.I32_4(rs), COLOR_BIT_DEPTH);
50 // Setup input allocation (ARGB 8888 bitmap).
51 Allocation input = Allocation.createFromBitmap(rs, bmap);
  /cts/tests/tests/uirendering/src/android/uirendering/cts/bitmapcomparers/
ExactComparer.java 22 import android.renderscript.Allocation;
59 public boolean verifySameRowsRS(Resources resources, Allocation ideal,
60 Allocation given, int offset, int stride, int width, int height,
61 RenderScript renderScript, Allocation inputAllocation, Allocation outputAllocation) {

Completed in 5561 milliseconds

1 2 3 4 5 6 7 8 91011>>