/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/ |
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/cppstrided/ |
compute.cpp | 35 sp<Allocation> ain = Allocation::createTyped(rs, t); 36 sp<Allocation> aout = Allocation::createTyped(rs, t);
|
/external/replicaisland/src/com/replica/replicaisland/ |
AllocationGuard.java | 22 * allocation of AllocationGuard or its derivatives will cause an error log entry. Note 29 // An allocation has occurred while the guard is active! Report it. 30 DebugLog.e("AllocGuard", "An allocation of type " + this.getClass().getName()
|
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
SceneGraphBase.java | 24 import android.renderscript.Allocation; 40 Allocation mNameAlloc; 50 Allocation getNameAlloc(RenderScriptGL rs) {
|
RenderPass.java | 101 Allocation drawableData = Allocation.createSized(rs, 102 Element.ALLOCATION(rs), 104 Allocation[] drawableAllocs = new Allocation[mObjectsToDraw.size()];
|
/frameworks/base/tests/RenderScriptTests/ShadersTest/src/com/android/shaderstest/ |
ShadersTestRS.java | 20 import android.renderscript.Allocation; 65 private Allocation mMeshTexture; 66 private Allocation mScreen; 67 private Allocation mScreenDepth; 135 mMeshTexture = Allocation.createFromBitmapResource(mRS, mRes, R.drawable.robot, 136 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE, 137 Allocation.USAGE_GRAPHICS_TEXTURE); 192 mScreen = Allocation.createTyped(mRS, b.create(), 193 Allocation.USAGE_GRAPHICS_TEXTURE | Allocation.USAGE_GRAPHICS_RENDER_TARGET) [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsic.h | 34 const Allocation * ain, 35 Allocation * aout, 46 virtual void setGlobalBind(uint32_t slot, Allocation *data);
|
/frameworks/base/docs/html/sdk/api_diff/16/changes/ |
android.renderscript.Allocation.html | 10 android.renderscript.Allocation 74 Class android.renderscript.<A HREF="../../../../reference/android/renderscript/Allocation.html" target="_top"><font size="+2"><code>Allocation</code></font></A> 86 <A NAME="android.renderscript.Allocation.getBytesSize_added()"></A> 87 <nobr><code>int</code> <A HREF="../../../../reference/android/renderscript/Allocation.html#getBytesSize()" target="_top"><code>getBytesSize</code></A>()</nobr> 93 <A NAME="android.renderscript.Allocation.getElement_added()"></A> 94 <nobr><code>Element</code> <A HREF="../../../../reference/android/renderscript/Allocation.html#getElement()" target="_top"><code>getElement</code></A>()</nobr> 100 <A NAME="android.renderscript.Allocation.getSurface_added()"></A> 101 <nobr><code>Surface</code> <A HREF="../../../../reference/android/renderscript/Allocation.html#getSurface()" target="_top"><code>getSurface</code></A>()</nobr> 107 <A NAME="android.renderscript.Allocation.getUsage_added()"></A [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/cache/ |
CachingPipeline.java | 22 import android.support.v8.renderscript.Allocation; 48 private volatile Allocation mOriginalAllocation = null; 49 private volatile Allocation mFiltersOnlyOriginalAllocation = null; 51 protected volatile Allocation mInPixelsAllocation; 52 protected volatile Allocation mOutPixelsAllocation; 208 Allocation filtersOnlyOriginalAllocation = mFiltersOnlyOriginalAllocation; 209 mFiltersOnlyOriginalAllocation = Allocation.createFromBitmap(RS, originalBitmap, 210 Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); 215 Allocation originalAllocation = mOriginalAllocation [all...] |
/frameworks/av/libvideoeditor/vss/mcs/src/ |
M4MCS_MediaAndCodecSubscription.c | 178 M4OSA_TRACE1_0("M4READER_3GP interface allocation error"); 196 M4OSA_TRACE1_0("M4READER_AMR interface allocation error"); 215 M4OSA_TRACE1_0("M4READER_MP3 interface allocation error"); 238 M4OSA_TRACE1_0("M4DECODER_MPEG4 interface allocation error"); 255 M4OSA_TRACE1_0("M4DECODER_AVC interface allocation error"); 277 M4OSA_TRACE1_0("M4AD PHILIPS AMRNB interface allocation error"); 294 M4OSA_TRACE1_0("M4AD PHILIPS AAC interface allocation error"); 311 M4OSA_TRACE1_0("M4AD PHILIPS MP3 interface allocation error"); 340 M4OSA_TRACE1_0("M4WRITER_3GP interface allocation error"); 365 M4OSA_TRACE1_0("M4MP4E_MPEG4 interface allocation error") [all...] |
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.renderscript.Allocation.html | 10 android.renderscript.Allocation 74 Class android.renderscript.<A HREF="../../../../reference/android/renderscript/Allocation.html" target="_top"><font size="+2"><code>Allocation</code></font></A> 86 <A NAME="android.renderscript.Allocation.copy1DRangeFrom_added(int, int, android.renderscript.Allocation, int)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/renderscript/Allocation.html#copy1DRangeFrom(int, int, android.renderscript.Allocation, int)" target="_top"><code>copy1DRangeFrom</code></A>(<code>int,</nobr> int<nobr>,</nobr> Allocation<nobr>,</nobr> int<nobr><nobr></code>)</nobr> 93 <A NAME="android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, android.renderscript.Allocation, int, int)"></A [all...] |
/packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/ |
GalaxyRS.java | 137 private Allocation loadTexture(int id) { 138 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mResources, id, local 139 Allocation.MipmapControl.MIPMAP_NONE, 140 Allocation.USAGE_GRAPHICS_TEXTURE); 141 return allocation; 144 // TODO: Fix Allocation.createFromBitmapResource() to do this when RGBA_8888 is specified 145 private Allocation loadTextureARGB(int id) { 147 final Allocation allocation = Allocation.createFromBitmap(mRS, b local [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
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);
|
/external/llvm/lib/CodeGen/ |
AllocationOrder.cpp | 1 //===-- llvm/CodeGen/AllocationOrder.cpp - Allocation Order ---------------===// 10 // This file implements an allocation order for virtual registers. 12 // The preferred allocation order for a virtual register depends on allocation 50 "Target hint is outside allocation order.");
|
AllocationOrder.h | 1 //===-- llvm/CodeGen/AllocationOrder.h - Allocation Order -*- C++ -*-------===// 10 // This file implements an allocation order for virtual registers. 12 // The preferred allocation order for a virtual register depends on allocation 42 /// Get the allocation order without reordered hints. 45 /// Return the next physical register in the allocation order, or 0. 60 /// Limit'th register in the RegisterClassInfo allocation order.
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
Blur25.java | 21 import android.renderscript.Allocation; 38 private Allocation mScratchPixelsAllocation1; 39 private Allocation mScratchPixelsAllocation2; 79 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 80 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
Blur25G.java | 22 import android.renderscript.Allocation; 38 private Allocation mScratchPixelsAllocation1; 39 private Allocation mScratchPixelsAllocation2; 68 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 69 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
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/ |
Blur25.java | 21 import android.renderscript.Allocation; 38 private Allocation mScratchPixelsAllocation1; 39 private Allocation mScratchPixelsAllocation2; 79 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 80 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
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/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
FillTest.java | 66 mTests[index].testName = Allocation.createFromString(mRS, 68 Allocation.USAGE_SCRIPT); 71 Allocation.USAGE_SCRIPT); 131 private Allocation loadTextureARGB(int id) { 133 return Allocation.createFromBitmap(mRS, b, 134 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE, 135 Allocation.USAGE_GRAPHICS_TEXTURE); 138 private Allocation loadTextureRGB(int id) { 139 return Allocation.createFromBitmapResource(mRS, mRes, id, 140 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE [all...] |
/frameworks/rs/ |
rsScriptC_LibGL.cpp | 49 void rsrBindTexture(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { 55 void rsrBindConstant(Context *rsc, ProgramFragment *pf, uint32_t slot, Allocation *a) { 61 void rsrBindConstant(Context *rsc, ProgramVertex *pv, uint32_t slot, Allocation *a) { 93 void rsrBindFrameBufferObjectColorTarget(Context *rsc, Allocation *a, uint32_t slot) { 99 void rsrBindFrameBufferObjectDepthTarget(Context *rsc, Allocation *a) { 221 void rsrDrawTextAlloc(Context *rsc, Allocation *a, int x, int y) { 222 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a); 225 rsc->mHal.funcs.allocation.unlock1D(rsc, a); 249 void rsrMeasureTextAlloc(Context *rsc, Allocation *a, 252 const char *text = (const char *)rsc->mHal.funcs.allocation.lock1D(rsc, a) [all...] |
/external/webkit/Source/JavaScriptCore/jit/ |
ExecutableAllocator.cpp | 52 ExecutablePool::Allocation ExecutablePool::systemAlloc(size_t size) 54 PageAllocation allocation = PageAllocation::allocate(size, OSAllocator::JSJITCodePages, EXECUTABLE_POOL_WRITABLE, true); local 55 if (!allocation) 57 return allocation; 60 void ExecutablePool::systemRelease(ExecutablePool::Allocation& allocation) 62 allocation.deallocate();
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicConvolve3x3.java | 22 * Intrinsic for applying a 3x3 convolve to an allocation. 27 private Allocation mInput; 70 * @param ain The input allocation. 72 public void setInput(Allocation ain) { 100 * allocation. 102 * @param aout Output allocation. Must match creation element 105 public void forEach(Allocation aout) {
|
ScriptIntrinsicConvolve5x5.java | 22 * Intrinsic for applying a 5x5 convolve to an allocation. 27 private Allocation mInput; 64 * @param ain The input allocation. 66 public void setInput(Allocation ain) { 96 * allocation. 98 * @param aout Output allocation. Must match creation element 101 public void forEach(Allocation aout) {
|