/frameworks/rs/ |
rsScript.cpp | 43 void Script::setSlot(uint32_t slot, Allocation *a) { 46 ALOGE("Script::setSlot unable to set allocation, invalid slot index"); 57 ALOGE("Script::setVar unable to set allocation, invalid slot index"); 66 ALOGE("Script::getVar unable to set allocation, invalid slot index"); 75 ALOGE("Script::setVar unable to set allocation, invalid slot index"); 85 ALOGE("Script::setVarObj unable to set allocation, invalid slot index"); 154 Allocation *a = static_cast<Allocation *>(va); 190 static_cast<const Allocation *>(vain), static_cast<Allocation *>(vaout) [all...] |
rsScriptC_Lib.cpp | 177 Allocation *in, Allocation *out, 183 void rsrAllocationSyncAll(Context *rsc, Allocation *a, RsAllocationUsageType usage) { 187 void rsrAllocationCopy1DRange(Context *rsc, Allocation *dstAlloc, 191 Allocation *srcAlloc, 198 void rsrAllocationCopy2DRange(Context *rsc, Allocation *dstAlloc, 202 Allocation *srcAlloc,
|
/packages/wallpapers/PhaseBeam/src/com/android/phasebeam/ |
PhaseBeamRS.java | 7 import android.renderscript.Allocation; 42 private Allocation mDotAllocation; 43 private Allocation mBeamAllocation; 178 private Allocation loadTexture(int id) { 179 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mRes, id, local 180 Allocation.MipmapControl.MIPMAP_NONE, 181 Allocation.USAGE_GRAPHICS_TEXTURE); 182 return allocation; [all...] |
/bionic/libc/bionic/ |
malloc_debug_check.cpp | 215 log_message("+++ ALLOCATION %p SIZE %d HAS A CORRUPTED FRONT GUARD\n", 218 log_message("+++ ALLOCATION %p HAS A CORRUPTED FRONT GUARD "\ 220 /* Allocation header is probably corrupt, do not print stack trace */ 227 log_message("+++ ALLOCATION %p SIZE %d HAS A CORRUPTED REAR GUARD\n", 241 log_message("+++ ALLOCATION %p HAS INVALID TAG %08x (NOT DUMPING STACKTRACE)\n", 243 // Allocation header is probably corrupt, do not dequeue or dump stack 250 log_message("+++ ALLOCATION %p SIZE %d WAS USED AFTER BEING FREED\n", 260 log_message("+++ ALLOCATION %p SIZE %d ALLOCATED HERE:\n", 264 log_message("+++ ALLOCATION %p SIZE %d FREED HERE:\n", 346 log_message("+++ ALLOCATION %p SIZE %d BYTES MULTIPLY FREED!\n" [all...] |
/external/qemu/memcheck/ |
memcheck_malloc_map.c | 28 /* Allocation descriptor stored in the map. */ 33 /* Allocation descriptor for this entry. */ 41 /* Gets address of the beginning of an allocation block for the given entry in 44 * adesc - Entry in the allocation descriptors map. 46 * Address of the beginning of an allocation block for the given entry in the 55 /* Gets address of the end of an allocation block for the given entry in 58 * adesc - Entry in the allocation descriptors map. 60 * Address of the end of an allocation block for the given entry in the map. 72 /* Compare routine for the allocation descriptors map. 101 /* Inserts new (or replaces existing) entry into allocation descriptors map [all...] |
memcheck_util.h | 81 // Helpers for transfering memory allocation information. 84 /* Copies memory allocation descriptor from the guest's address space to the 98 /* Copies memory allocation descriptor from the emulator's memory to the guest's 126 /* Copies memory allocation query descriptor from the guest's address space to 141 /* Fails allocation request (TRACE_DEV_REG_MALLOC event). 142 * Allocation request failure is reported by zeroing 'libc_pid' filed in the 143 * allocation descriptor in the guest's address space. 145 * guest_address - Allocation descriptor address in the guest's address space, 159 /* Fails memory allocation query request (TRACE_DEV_REG_QUERY_MALLOC event). 188 * This routine is called after new entry is inserted into allocation map, s [all...] |
/external/webkit/Source/JavaScriptCore/jit/ |
ExecutableAllocator.h | 85 CRASH(); // Allocation is too large 103 typedef PageAllocation Allocation; 105 class Allocation { 107 Allocation(void* base, size_t size) 121 typedef Vector<Allocation, 2> AllocationList; 147 void tryShrink(void* allocation, size_t oldSize, size_t newSize) 149 if (static_cast<char*>(allocation) + oldSize != m_freePtr) 151 m_freePtr = static_cast<char*>(allocation) + roundUpAllocationSize(newSize, sizeof(void*)); 164 static Allocation systemAlloc(size_t n); 165 static void systemRelease(Allocation& alloc) [all...] |
/frameworks/base/docs/html/reference/renderscript/ |
rs__allocation_8rsh.html | 59 <div class="textblock"><p>Allocation routines. </p> 117 <p>Copy part of an allocation from another allocation.</p> 120 <tr><td class="paramname">dstAlloc</td><td>Allocation to copy data into. </td></tr> 121 <tr><td class="paramname">dstOff</td><td>The offset of the first element to be copied in the destination allocation. </td></tr> 122 <tr><td class="paramname">dstMip</td><td>Mip level in the destination allocation. </td></tr> 124 <tr><td class="paramname">srcAlloc</td><td>The source data allocation. </td></tr> 125 <tr><td class="paramname">srcOff</td><td>The offset of the first element in data to be copied in the source allocation. </td></tr> 126 <tr><td class="paramname">srcMip</td><td>Mip level in the source allocation. </td></tr> 217 <p>Copy a rectangular region into the allocation from another allocation.</p [all...] |
/device/asus/flo/ |
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"/> 50 <Quirk name="defers-output-buffer-allocation"/> 55 <Quirk name="defers-output-buffer-allocation"/> 60 <Quirk name="defers-output-buffer-allocation"/> 65 <Quirk name="defers-output-buffer-allocation"/>
|
/external/icu4c/tools/genrb/ |
ustr.c | 29 #define ALLOCATION(minSize) (minSize < 0x80 ? 0x80 : (2 * minSize + 0x80) & ~(0x80 - 1)) 49 ustr_resize(s, ALLOCATION(length), status); 88 ustr_resize(dst, ALLOCATION(src->fLength), status); 109 ustr_resize(s, ALLOCATION(len), status); 136 ustr_resize(dst, ALLOCATION(dst->fLength + n), status); 156 ustr_resize(dst, ALLOCATION(dst->fLength + 1), status); 188 ustr_resize(dst, ALLOCATION(dst->fLength + len), status);
|
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/ |
GenericWaveRS.java | 57 protected Allocation mPointAlloc; 70 private Allocation mTexture; 111 // set our java object as the data for the renderscript allocation 140 // Create the Allocation for the vertices 153 mTexture = Allocation.createFromBitmapResource(mRS, mResources, mTexId, 154 Allocation.MipmapControl.MIPMAP_NONE, 155 Allocation.USAGE_GRAPHICS_TEXTURE);
|
/frameworks/base/docs/html/guide/topics/renderscript/ |
advanced.jd | 23 <a href="#mem-allocation">Memory Allocation APIs</a> 73 <li>Memory allocation request features</li> 341 lets you specify the memory space of this memory allocation. There are four memory space 345 <li>{@link android.renderscript.Allocation#USAGE_SCRIPT}: Allocates in the script memory 348 <li>{@link android.renderscript.Allocation#USAGE_GRAPHICS_TEXTURE}: Allocates in the 351 <li>{@link android.renderscript.Allocation#USAGE_GRAPHICS_VERTEX}: Allocates in the vertex 354 <li>{@link android.renderscript.Allocation#USAGE_GRAPHICS_CONSTANTS}: Allocates in the 364 Allocation.USAGE_SCRIPT | Allocation.USAGE_GRAPHICS_VERTEX) [all...] |
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/ |
TorusTest.java | 26 import android.renderscript.Allocation.MipmapControl; 65 private Allocation mTexTorus; 98 mTests[index].testName = Allocation.createFromString(mRS, 100 Allocation.USAGE_SCRIPT); 103 Allocation.USAGE_SCRIPT); 231 private Allocation loadTextureRGB(int id) { 232 return Allocation.createFromBitmapResource(mRS, mRes, id, 233 Allocation.MipmapControl.MIPMAP_ON_SYNC_TO_TEXTURE, 234 Allocation.USAGE_GRAPHICS_TEXTURE);
|
TextTest.java | 48 mTests[index].testName = Allocation.createFromString(mRS, 50 Allocation.USAGE_SCRIPT); 53 Allocation.USAGE_SCRIPT);
|
/packages/wallpapers/NoiseField/src/com/android/noisefield/ |
NoiseFieldRS.java | 6 import android.renderscript.Allocation; 45 private Allocation mDotAllocation; 163 private Allocation loadTexture(int id) { 164 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mRes, id, local 165 Allocation.MipmapControl.MIPMAP_NONE, 166 Allocation.USAGE_GRAPHICS_TEXTURE); 167 return allocation;
|
/external/bison/lib/ |
vasnprintf.h | 1 /* vsprintf with automatic memory allocation. 46 if no dynamic memory allocation was necessary) and set *LENGTHP to the 50 When dynamic memory allocation occurs, the preallocated buffer is left
|
/external/chromium/chrome/browser/ui/gtk/infobars/ |
extension_infobar_gtk.cc | 77 GtkAllocation* allocation) { 78 gfx::Size new_size(allocation->width, allocation->height);
|
/external/eigen/test/eigen2/ |
eigen2_nomalloc.cpp | 15 // discard stack allocation as that too bypasses malloc 17 // any heap allocation will raise an assert 24 /* this test check no dynamic memory allocation are issued with fixed-size matrices
|
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.h | 14 // allocation. 16 // After register allocation new DBG_VALUE instructions are emitted to reflect 53 /// that happened during register allocation.
|
/external/valgrind/main/memcheck/tests/ |
origin2-not-quite.stderr.exp | 6 Uninitialised value was created by a heap allocation 16 Uninitialised value was created by a heap allocation 26 Uninitialised value was created by a stack allocation
|
/external/webkit/Source/JavaScriptCore/runtime/ |
RopeImpl.h | 43 void* allocation; local 44 if (tryFastMalloc(sizeof(RopeImpl) + (fiberCount - 1) * sizeof(Fiber)).getValue(allocation)) 45 return adoptRef(new (allocation) RopeImpl(fiberCount));
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsic.cpp | 62 void RsdCpuScriptIntrinsic::setGlobalBind(uint32_t slot, Allocation *data) { 77 const Allocation * ain, 78 Allocation * aout,
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ColorCube.java | 21 import android.renderscript.Allocation; 34 private Allocation mCube; 53 mCube = Allocation.createTyped(mRS, t);
|
GroupTest.java | 21 import android.renderscript.Allocation; 35 private Allocation mScratchPixelsAllocation1; 78 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, connect);
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
GroupTest.java | 21 import android.renderscript.Allocation; 35 private Allocation mScratchPixelsAllocation1; 78 mScratchPixelsAllocation1 = Allocation.createTyped(mRS, connect);
|