/packages/wallpapers/Galaxy4/src/com/android/galaxy4/ |
GalaxyRS.java | 6 import android.renderscript.Allocation; 48 private Allocation mCloudAllocation; 49 private Allocation mStaticStarAllocation; 50 private Allocation mStaticStar2Allocation; 51 private Allocation mBgAllocation; 108 private Allocation loadTexture(int id) { 109 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mRes, id, local 110 Allocation.MipmapControl.MIPMAP_NONE [all...] |
/development/samples/RenderScript/Levels/src/com/android/rs/levels/ |
LevelsRSActivity.java | 25 import android.renderscript.Allocation; 62 private Allocation mInPixelsAllocation; 63 private Allocation mOutPixelsAllocation; 170 mInPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapIn, 171 Allocation.MipmapControl.MIPMAP_NONE, 172 Allocation.USAGE_SCRIPT); 173 mOutPixelsAllocation = Allocation.createTyped(mRS, mInPixelsAllocation.getType(), 174 Allocation.USAGE_SCRIPT | 175 Allocation.USAGE_IO_OUTPUT);
|
/external/skia/include/views/ |
SkSystemEventTypes.h | 16 2) keep them <= 4 bytes, so we can avoid an allocation in SkEvent::setType()
|
/external/skia/legacy/include/views/ |
SkSystemEventTypes.h | 16 2) keep them <= 4 bytes, so we can avoid an allocation in SkEvent::setType()
|
/external/valgrind/main/massif/tests/ |
long-time.c | 1 // This test does enough allocation and deallocation that the time-unit,
|
/external/valgrind/main/memcheck/tests/ |
origin4-many.stderr.exp | 3 Uninitialised value was created by a heap allocation 9 Uninitialised value was created by a heap allocation 15 Uninitialised value was created by a heap allocation 21 Uninitialised value was created by a heap allocation 27 Uninitialised value was created by a heap allocation 33 Uninitialised value was created by a heap allocation 39 Uninitialised value was created by a heap allocation 45 Uninitialised value was created by a heap allocation 51 Uninitialised value was created by a heap allocation
|
/external/valgrind/main/tests/ |
malloc.h | 12 // Allocates a 16-aligned block. Asserts if the allocation fails.
|
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
UiTest.java | 26 import android.renderscript.Allocation.MipmapControl; 82 mTests[index].testName = Allocation.createFromString(mRS, 84 Allocation.USAGE_SCRIPT); 87 Allocation.USAGE_SCRIPT); 128 private Allocation loadTextureRGB(int id) { 129 return Allocation.createFromBitmapResource(mRS, mRes, id, 130 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE, 131 Allocation.USAGE_GRAPHICS_TEXTURE); 134 private Allocation loadTextureARGB(int id) { 136 return Allocation.createFromBitmap(mRS, b [all...] |
/frameworks/compile/slang/tests/P_export_types/ |
export_types.rs | 20 rs_allocation allocation;
|
/frameworks/ex/carousel/java/com/android/ex/carousel/ |
CarouselRS.java | 63 private static final Allocation.MipmapControl MIPMAP = 64 Allocation.MipmapControl.MIPMAP_NONE; 79 private Allocation[] mAllocationPool; 479 // an allocation of at least one card. This relies on invoke_createCards() to keep 480 // track of when the allocation is not valid. 649 private Allocation allocationFromBitmap(Bitmap bitmap, Allocation.MipmapControl mipmap) 652 Allocation allocation = Allocation.createFromBitmap(mRS, bitmap 668 Allocation allocation = mAllocationPool[n % count]; local [all...] |
/frameworks/rs/cpu_ref/ |
rsCpuCore.h | 57 const Allocation * ain; 58 Allocation * aout; 96 void launchThreads(const Allocation * ain, Allocation * aout,
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
Blur25.java | 34 private Allocation mScratchPixelsAllocation1; 35 private Allocation mScratchPixelsAllocation2; 75 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, tb.create()); 76 mScratchPixelsAllocation2 = Allocation.createTyped(mRS, tb.create());
|
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) {
|
rsScript.h | 100 void setSlot(uint32_t slot, Allocation *a); 111 const Allocation * ain, 112 Allocation * aout, 122 ObjectBaseRef<Allocation> *mSlots;
|
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/latency/ |
latency.cpp | 66 sp<Allocation> ain = Allocation::createTyped(rs, t); 67 sp<Allocation> aout = Allocation::createTyped(rs, t);
|
/frameworks/rs/driver/ |
rsdAllocation.cpp | 92 uint8_t *GetOffsetPtr(const android::renderscript::Allocation *alloc, 104 static void Update2DTexture(const Context *rsc, const Allocation *alloc, const void *ptr, 123 static void Upload2DTexture(const Context *rsc, const Allocation *alloc, bool isFirstUpload) { 165 static void UploadToTexture(const Context *rsc, const Allocation *alloc) { 203 static void AllocateRenderTarget(const Context *rsc, const Allocation *alloc) { 228 static void UploadToBufferObject(const Context *rsc, const Allocation *alloc) { 254 static size_t DeriveYUVLayout(int yuv, Allocation::Hal::DrvState *state) { 294 static size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, 306 size_t offsets[Allocation::MAX_LOD]; 362 bool rsdAllocationInit(const Context *rsc, Allocation *alloc, bool forceZero) [all...] |
/packages/wallpapers/Basic/src/com/android/wallpaper/fall/ |
FallRS.java | 70 private Allocation mUniformAlloc; 242 private Allocation loadTexture(int id) { 243 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mResources, id, local 244 Allocation.MipmapControl.MIPMAP_NONE, 245 Allocation.USAGE_GRAPHICS_TEXTURE); 246 return allocation; 249 private Allocation loadTextureARGB(int id) { 251 final Allocation allocation = Allocation.createFromBitmap(mRS, b local [all...] |
/prebuilts/sdk/renderscript/lib/ |
javalib.jar | |
/external/chromium/base/ |
process_util_unittest_mac.mm | 17 // Objective-C allocation in this environment would be to loop over allocation
|
/external/valgrind/main/drd/tests/ |
hg05_race2.stderr.exp-powerpc | 6 Allocation context: unknown. 15 Allocation context: unknown.
|
tc21_pthonce.stderr.exp | 7 Allocation context: BSS section of tc21_pthonce 17 Allocation context: BSS section of tc21_pthonce
|