HomeSort by relevance Sort by last modified time
    Searched refs:Allocation (Results 201 - 225 of 837) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptIntrinsic3DLUT.java 25 * allocation. The 8 nearest values are sampled and linearly interpolated. The
30 private Allocation mLUT;
66 * Sets the {@link android.support.v8.renderscript.Allocation} to be used as
74 public void setLUT(Allocation lut) {
94 * @param ain Input allocation
95 * @param aout Output allocation
97 public void forEach(Allocation ain, Allocation aout) {
ScriptIntrinsicBlur.java 25 * specified radius to all elements of an allocation.
31 private Allocation mInput;
40 * Create an intrinsic for applying a blur to an allocation. The
72 * @param ain The input allocation
74 public void setInput(Allocation ain) {
76 throw new RSIllegalArgumentException("Input set to a 1D Allocation");
98 * allocation.
100 * @param aout Output allocation. Must match creation element
103 public void forEach(Allocation aout) {
105 throw new RSIllegalArgumentException("Output is a 1D Allocation");
    [all...]
  /frameworks/rs/tests/cpp_api/cpp-globalguard/
compute.cpp 26 sp<Allocation> ain;
27 sp<Allocation> aout;
56 ain = Allocation::createTyped(rs, t);
57 aout = Allocation::createTyped(rs, t);
  /frameworks/rs/tests/cpp_api/cppallocation/
compute.cpp 33 sp<Allocation> ain = Allocation::createTyped(rs, t);
34 sp<Allocation> aout = Allocation::createTyped(rs, t);
  /frameworks/rs/tests/java_api/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/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/
Healing.java 25 import android.support.v8.renderscript.Allocation;
85 Allocation dest1 = Allocation.createTyped(rs, floatImage.create());
86 Allocation dest2 = Allocation.createTyped(rs, floatImage.create());
92 Allocation dest_uc4 = Allocation.createFromBitmap(rs, destBitmap);
97 Allocation src_f3 = Allocation.createTyped(rs, floatImage.create());
98 Allocation src_uc4 = Allocation.createFromBitmap(rs, src)
    [all...]
  /frameworks/rs/tests/java_api/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;
  /frameworks/rs/tests/java_api/ImageProcessing_jb/src/com/android/rs/image/
Contrast.java 21 import android.renderscript.Allocation;
Exposure.java 21 import android.renderscript.Allocation;
  /frameworks/rs/tests/java_api/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/tests/java_api/RSTest_CompatLibLegacy/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/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_single_source_script.java 20 import android.renderscript.Allocation;
26 private Allocation testAllocation1, testAllocation2;
39 testAllocation1 = Allocation.createTyped(RS, i32TypeBuilder.create());
40 testAllocation2 = Allocation.createTyped(RS, i32TypeBuilder.create());
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_single_source_script.java 22 import android.support.v8.renderscript.Allocation;
28 private Allocation testAllocation1, testAllocation2;
41 testAllocation1 = Allocation.createTyped(RS, i32TypeBuilder.create());
42 testAllocation2 = Allocation.createTyped(RS, i32TypeBuilder.create());
  /frameworks/rs/tests/lldb/java/BranchingFunCalls/src/com/android/rs/branchingfuncalls/
MainActivity.java 25 private Allocation mInAllocation;
26 private Allocation mOutAllocation;
46 mInAllocation = Allocation.createSized(mRS, e, mAllocSize);
47 mOutAllocation = Allocation.createSized(mRS, e, mAllocSize);
  /frameworks/rs/tests/lldb/java/DebugWaitAttach/src/com/android/rs/waitattachdebug/
MainActivity.java 31 private Allocation mInAllocation;
32 private Allocation mOutAllocation;
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
59 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut);
  /frameworks/rs/tests/lldb/java/MultipleRSFiles/src/com/android/rs/multiplersfiles/
MainActivity.java 31 private Allocation mInAllocation;
32 private Allocation mOutAllocation;
59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
60 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut);
  /frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/com/android/rs/waitattachnodebug/
MainActivity.java 31 private Allocation mInAllocation;
32 private Allocation mOutAllocation;
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
59 mOutAllocation = Allocation.createFromBitmap(mRS, mBitmapOut);
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic.cpp 62 void RsdCpuScriptIntrinsic::setGlobalBind(uint32_t slot, Allocation *data) {
76 void RsdCpuScriptIntrinsic::preLaunch(uint32_t slot, const Allocation ** ains,
77 uint32_t inLen, Allocation * aout,
82 void RsdCpuScriptIntrinsic::postLaunch(uint32_t slot, const Allocation ** ains,
83 uint32_t inLen, Allocation * aout,
89 const Allocation ** ains,
91 Allocation * aout,
  /frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/
UT_global_query.java 20 import android.renderscript.Allocation;
52 Allocation G = Allocation.createTyped(pRS, typeBuilder.create());
53 Allocation dummy = Allocation.createTyped(pRS, typeBuilder.create());
54 Allocation R = Allocation.createTyped(pRS, typeBuilder.create());
UT_multi_input.java 20 import android.renderscript.Allocation;
27 private Allocation Ain0;
28 private Allocation Ain1;
30 private Allocation Out0;
44 Ain0 = Allocation.createTyped(RS, floatBuilder.create());
45 Ain1 = Allocation.createTyped(RS, floatBuilder.create());
46 Out0 = Allocation.createTyped(RS, floatBuilder.create());
  /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);
61 allocation.destroy();
78 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum);
98 mOut = Allocation.createSized(mRS, Element.I32(mRS), ObjectNum)
    [all...]

Completed in 613 milliseconds

1 2 3 4 5 6 7 891011>>