/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/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);
|
/frameworks/rs/cpu_ref/ |
rsCpuCore.h | 58 const Allocation * ain; 59 Allocation * aout; 97 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/java/tests/RsTest/src/com/android/rs/test/ |
check_dims.rs | 8 // input allocation (i.e. don't affect anything between dimX and stride for
|
/frameworks/rs/ |
rsAllocation.h | 46 class Allocation : public ObjectBase { 47 // The graphics equivalent of malloc. The allocation contains a structure of elements. 82 } lod[android::renderscript::Allocation::MAX_LOD]; 99 static Allocation * createAllocation(Context *rsc, const Type *, uint32_t usages, 102 virtual ~Allocation(); 109 void copyRange1D(Context *rsc, const Allocation *src, int32_t srcOff, int32_t destOff, int32_t len); 137 static Allocation *createFromStream(Context *rsc, IStream *stream); 178 const android::renderscript::Allocation *alloc; 190 Allocation(Context *rsc, const Type *, uint32_t usages, RsAllocationMipmapControl mc, void *ptr);
|
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) {
|
rsScriptC_Lib.cpp | 174 void rsrAllocationIoSend(Context *rsc, Allocation *src) { 178 void rsrAllocationIoReceive(Context *rsc, Allocation *src) { 184 Allocation *in, Allocation *out, 190 void rsrAllocationSyncAll(Context *rsc, Allocation *a, RsAllocationUsageType usage) { 194 void rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc, 198 Allocation *srcAlloc, 205 void rsrAllocationCopy2DRange(Context *rsc, Allocation *dstAlloc, 209 Allocation *srcAlloc,
|
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 | 70 sp<Allocation> ain = Allocation::createTyped(rs, t); 71 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) { 255 static size_t DeriveYUVLayout(int yuv, Allocation::Hal::DrvState *state) { 303 static size_t AllocationBuildPointerTable(const Context *rsc, const Allocation *alloc, 315 size_t offsets[Allocation::MAX_LOD]; 371 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...] |
/bionic/libc/bionic/ |
malloc_debug_check.cpp | 224 log_message("+++ ALLOCATION %p SIZE %d HAS A CORRUPTED FRONT GUARD\n", 227 log_message("+++ ALLOCATION %p HAS A CORRUPTED FRONT GUARD "\ 229 /* Allocation header is probably corrupt, do not print stack trace */ 236 log_message("+++ ALLOCATION %p SIZE %d HAS A CORRUPTED REAR GUARD\n", 250 log_message("+++ ALLOCATION %p HAS INVALID TAG %08x (NOT DUMPING STACKTRACE)\n", 252 // Allocation header is probably corrupt, do not dequeue or dump stack 259 log_message("+++ ALLOCATION %p SIZE %d WAS USED AFTER BEING FREED\n", 269 log_message("+++ ALLOCATION %p SIZE %d ALLOCATED HERE:\n", 273 log_message("+++ ALLOCATION %p SIZE %d FREED HERE:\n", 387 log_message("+++ ALLOCATION %p SIZE %d BYTES MULTIPLY FREED!\n" [all...] |
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/ |
CachingPipeline.java | 27 import android.support.v8.renderscript.Allocation; 56 private volatile Allocation mOriginalAllocation = null; 57 private volatile Allocation mFiltersOnlyOriginalAllocation = null; 59 protected volatile Allocation mInPixelsAllocation; 60 protected volatile Allocation mOutPixelsAllocation; 197 Allocation filtersOnlyOriginalAllocation = mFiltersOnlyOriginalAllocation; 198 mFiltersOnlyOriginalAllocation = Allocation.createFromBitmap(RS, originalBitmap, 199 Allocation.MipmapControl.MIPMAP_NONE, Allocation.USAGE_SCRIPT); 204 Allocation originalAllocation = mOriginalAllocation [all...] |
/art/runtime/gc/space/ |
dlmalloc_space-inl.h | 44 CHECK(Contains(result)) << "Allocation (" << reinterpret_cast<void*>(result) 45 << ") not in bounds of allocation space " << *this;
|
/cts/tests/tests/rscpp/src/android/cts/rscpp/ |
RSConvolveTest.java | 60 Allocation rsInput = Allocation.createTyped(mRS, build.create()); 61 Allocation rsOutput = Allocation.createTyped(mRS, build.create()); 118 Allocation rsInput = Allocation.createTyped(mRS, build.create()); 119 Allocation rsOutput = Allocation.createTyped(mRS, build.create());
|
/device/lge/hammerhead/ |
media_codecs.xml | 22 <Quirk name="requires-loaded-to-idle-after-allocation"/> 27 <Quirk name="requires-loaded-to-idle-after-allocation"/> 32 <Quirk name="requires-loaded-to-idle-after-allocation"/> 37 <Quirk name="requires-loaded-to-idle-after-allocation"/> 57 <Quirk name="defers-output-buffer-allocation"/> 62 <Quirk name="defers-output-buffer-allocation"/> 67 <Quirk name="defers-output-buffer-allocation"/> 72 <Quirk name="defers-output-buffer-allocation" />
|
/external/chromium/base/ |
process_util_unittest_mac.mm | 17 // Objective-C allocation in this environment would be to loop over allocation
|