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

<<11121314151617181920>>

  /frameworks/rs/java/tests/ComputePerf/src/com/example/android/rs/computeperf/
Mandelbrot.java 24 private Allocation mAllocationXY;
34 mAllocationXY = Allocation.createTyped(rs, tb.create());
  /frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
Artistic1.java 26 private Allocation mBlured;
30 mBlured = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
Histogram.java 27 private Allocation mSum;
28 private Allocation mSums;
47 mSums = Allocation.createTyped(mRS, t);
48 mSum = Allocation.createSized(mRS, Element.I32(mRS), 256);
Vibrance.java 21 import android.renderscript.Allocation;
  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Artistic1.java 26 private Allocation mBlured;
30 mBlured = Allocation.createTyped(mRS, mInPixelsAllocation.getType());
TestBase.java 22 import android.renderscript.Allocation;
34 protected Allocation mInPixelsAllocation;
35 protected Allocation mInPixelsAllocation2;
36 protected Allocation mOutPixelsAllocation;
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 25 import android.renderscript.Allocation;
43 private Allocation mAllocationOut;
44 private Allocation mAllocationIn;
82 mAllocationOut = Allocation.createTyped(mRS, t, Allocation.USAGE_SCRIPT |
83 Allocation.USAGE_IO_OUTPUT);
90 mAllocationIn = Allocation.createTyped(mRS, tb.create(), Allocation.USAGE_SCRIPT);
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_static_globals.java 36 Allocation A = Allocation.createTyped(pRS, typeBuilder.setX(1).create());
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
AllocationThunker.java 29 class AllocationThunker extends Allocation {
30 android.renderscript.Allocation mN;
31 //Allocation mAdaptedAllocation;
33 android.renderscript.Allocation getNObj() {
37 static android.renderscript.Allocation.MipmapControl
42 return android.renderscript.Allocation.MipmapControl.MIPMAP_NONE;
44 return android.renderscript.Allocation.MipmapControl.MIPMAP_FULL;
46 return android.renderscript.Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE;
75 AllocationThunker(RenderScript rs, Type t, int usage, android.renderscript.Allocation na) {
186 public void copyFrom(Allocation a)
    [all...]
ScriptIntrinsicLUT.java 29 private Allocation mTables;
56 si.mTables = Allocation.createSized(rs, Element.U8(rs), 1024);
130 * @param ain Input allocation
131 * @param aout Output allocation
133 public void forEach(Allocation ain, Allocation aout) {
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
46 Allocation * aout,
rsScriptGroup.h 43 ObjectBaseRef<Allocation> mAlloc;
65 ObjectBaseRef<Allocation> mAlloc;
93 void setInput(Context *rsc, ScriptKernelID *kid, Allocation *a);
94 void setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a);
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
46 Allocation * aout,
rsScriptGroup.h 43 ObjectBaseRef<Allocation> mAlloc;
65 ObjectBaseRef<Allocation> mAlloc;
93 void setInput(Context *rsc, ScriptKernelID *kid, Allocation *a);
94 void setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a);
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
46 Allocation * aout,
rsScriptGroup.h 43 ObjectBaseRef<Allocation> mAlloc;
65 ObjectBaseRef<Allocation> mAlloc;
93 void setInput(Context *rsc, ScriptKernelID *kid, Allocation *a);
94 void setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a);
  /frameworks/rs/cpp/
Script.cpp 29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout,
44 void Script::bindAllocation(sp<Allocation> va, uint32_t slot) const {
58 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages);
ScriptIntrinsics.cpp 47 void ScriptIntrinsic3DLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) {
55 void ScriptIntrinsic3DLUT::setLUT(sp<Allocation> lut) {
62 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "setLUT Allocation must be 3D");
81 void ScriptIntrinsicBlend::forEachClear(sp<Allocation> in, sp<Allocation> out) {
89 void ScriptIntrinsicBlend::forEachSrc(sp<Allocation> in, sp<Allocation> out) {
97 void ScriptIntrinsicBlend::forEachDst(sp<Allocation> in, sp<Allocation> out)
    [all...]
  /frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
helloComputeNDK.cpp 45 sp<Allocation> inputAlloc = Allocation::createTyped(rs, t, RS_ALLOCATION_MIPMAP_NONE,
48 sp<Allocation> outputAlloc = Allocation::createTyped(rs, t, RS_ALLOCATION_MIPMAP_NONE,
  /frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
Blur25G.java 34 private Allocation mScratchPixelsAllocation1;
35 private Allocation mScratchPixelsAllocation2;
64 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create());
65 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
Grain.java 28 private Allocation mNoise;
29 private Allocation mNoise2;
71 mNoise = Allocation.createTyped(mRS, tb.create());
72 mNoise2 = Allocation.createTyped(mRS, tb.create());
  /frameworks/rs/java/tests/MathErr/src/com/example/android/rs/matherr/
MathErr.java 26 private Allocation mAllocationSrc;
27 private Allocation mAllocationRes;
40 mAllocationSrc = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
41 mAllocationRes = Allocation.createSized(rs, Element.F32(rs), BUF_SIZE);
  /frameworks/rs/
rsFBOCache.cpp 29 mHal.state.colorTargets = new Allocation*[mHal.state.colorTargetsCount];
30 mColorTargets = new ObjectBaseRef<Allocation>[mHal.state.colorTargetsCount];
47 void FBOCache::bindColorTarget(Context *rsc, Allocation *a, uint32_t slot) {
63 void FBOCache::bindDepthTarget(Context *rsc, Allocation *a) {
rsScriptGroup.h 43 ObjectBaseRef<Allocation> mAlloc;
65 ObjectBaseRef<Allocation> mAlloc;
93 void setInput(Context *rsc, ScriptKernelID *kid, Allocation *a);
94 void setOutput(Context *rsc, ScriptKernelID *kid, Allocation *a);
  /frameworks/rs/tests/cppstrided/
compute.cpp 35 sp<Allocation> ain = Allocation::createTyped(rs, t);
36 sp<Allocation> aout = Allocation::createTyped(rs, t);

Completed in 467 milliseconds

<<11121314151617181920>>