/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicColorMatrixThunker.java | 63 public void forEach(Allocation ain, Allocation aout) {
|
ScriptIntrinsicConvolve3x3Thunker.java | 42 public void setInput(Allocation ain) { 51 public void forEach(Allocation aout) {
|
ScriptIntrinsicConvolve5x5Thunker.java | 42 public void setInput(Allocation ain) { 51 public void forEach(Allocation aout) {
|
ScriptIntrinsicLUTThunker.java | 57 public void forEach(Allocation ain, Allocation aout) {
|
ScriptIntrinsicYuvToRGBThunker.java | 42 public void setInput(Allocation ain) { 47 public void forEach(Allocation aout) {
|
ScriptIntrinsicColorMatrix.java | 32 private Allocation mInput; 40 * allocation. 153 * @param ain Input allocation 154 * @param aout Output allocation 156 public void forEach(Allocation ain, Allocation aout) {
|
ScriptGroup.java | 25 * The kernels may be connected internally or to an external allocation. 31 * user-supplied allocation. Inputs provide the input of a kernel. 52 Allocation mAllocation; 99 * Allocation to be used for kernels that require an input 100 * Allocation provided from outside of the ScriptGroup. 102 * @param s The ID of the kernel where the allocation should be 104 * @param a The allocation to connect. 106 public void setInput(Script.KernelID s, Allocation a) { 119 * Allocation to be used for the kernels that require an output 120 * Allocation visible after the ScriptGroup is executed [all...] |
/device/lge/mako/ |
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"/> 52 <Quirk name="defers-output-buffer-allocation"/> 57 <Quirk name="defers-output-buffer-allocation"/> 62 <Quirk name="defers-output-buffer-allocation"/>
|
/external/chromium/chrome/browser/ui/gtk/ |
custom_button.h | 168 return gfx::Rect(widget_->allocation.x, 169 widget_->allocation.y, 170 widget_->allocation.width, 171 widget_->allocation.height); 174 int width() const { return widget_->allocation.width; } 175 int height() const { return widget_->allocation.height; }
|
nine_box.cc | 112 int dst_width = dst->allocation.width; 113 int dst_height = dst->allocation.height; 126 // For widgets that have their own window, the allocation (x,y) coordinates 131 cairo_translate(cr, dst->allocation.x, dst->allocation.y); 203 int width = widget->allocation.width; 204 int height = widget->allocation.height;
|
/external/llvm/docs/HistoricalNotes/ |
2003-06-26-Reoptimizer2.txt | 7 allocation. It allows you to add, modify, or delete some instructions, 20 register allocation on just the trace, and stitch the trace back into 22 it does its register allocation. (On exits from the trace we have 35 does not handle floating-point register allocation. 96 allocation. 110 5. After the last section is the register allocation output.
|
/external/llvm/include/llvm/CodeGen/ |
RegAllocPBQP.h | 11 // instances to represent register allocation problems, and the RegAllocPBQP 33 /// This class wraps up a PBQP instance representing a register allocation 35 /// to a register allocation solution. (i.e. The PBQP-node <--> vreg map, 107 /// Builds PBQP instances to represent register allocation problems. Includes 124 /// Build a PBQP instance to represent the register allocation problem for 145 /// Build a PBQP instance to represent the register allocation problem for
|
/frameworks/base/docs/html/sdk/api_diff/14/changes/ |
android.renderscript.Script.html | 86 <A NAME="android.renderscript.Script.forEach_added(int, android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.FieldPacker)"></A> 87 <nobr><code>void</code> <A HREF="../../../../reference/android/renderscript/Script.html#forEach(int, android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.FieldPacker)" target="_top"><code>forEach</code></A>(<code>int,</nobr> Allocation<nobr>,</nobr> Allocation<nobr>,</nobr> FieldPacker<nobr><nobr></code>)</nobr>
|
/frameworks/base/graphics/java/android/renderscript/ |
ScriptIntrinsicColorMatrix.java | 32 private Allocation mInput; 40 * allocation. 148 * @param ain Input allocation 149 * @param aout Output allocation 151 public void forEach(Allocation ain, Allocation aout) {
|
ScriptGroup.java | 25 * The kernels may be connected internally or to an external allocation. 31 * user-supplied allocation. Inputs provide the input of a kernel. 51 Allocation mAllocation; 98 * Allocation to be used for kernels that require an input 99 * Allocation provided from outside of the ScriptGroup. 101 * @param s The ID of the kernel where the allocation should be 103 * @param a The allocation to connect. 105 public void setInput(Script.KernelID s, Allocation a) { 118 * Allocation to be used for the kernels that require an output 119 * Allocation visible after the ScriptGroup is executed [all...] |
/frameworks/rs/driver/ |
rsdPath.cpp | 53 DrvPathStatic(const Allocation *vtx, const Allocation *loops); 73 const Allocation *vtx, const Allocation *loops) { 112 DrvPathStatic::DrvPathStatic(const Allocation *vtx, const Allocation *loops) {
|
/frameworks/rs/ |
rsProgramFragment.cpp | 48 ALOGE("Unable to set fixed function emulation color because allocation is missing"); 49 rsc->setError(RS_ERROR_BAD_SHADER, "Unable to set fixed function emulation color because allocation is missing"); 56 void *p = rsc->mHal.funcs.allocation.lock1D(rsc, mHal.state.constants[0]); 59 rsc->mHal.funcs.allocation.unlock1D(rsc, mHal.state.constants[0]); 115 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
ImageProcessingActivity.java | 38 import android.renderscript.Allocation; 54 Allocation mInPixelsAllocation; 55 Allocation mInPixelsAllocation2; 56 Allocation mOutPixelsAllocation; 427 mInPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapIn, 428 Allocation.MipmapControl.MIPMAP_NONE, 429 Allocation.USAGE_SHARED | 430 Allocation.USAGE_GRAPHICS_TEXTURE | 431 Allocation.USAGE_SCRIPT); 432 mInPixelsAllocation2 = Allocation.createFromBitmap(mRS, mBitmapIn2 [all...] |
/external/webkit/Source/WebKit2/UIProcess/gtk/ |
WebViewWidget.cpp | 54 GtkAllocation allocation; local 55 gtk_widget_get_allocation(widget, &allocation); 59 attributes.x = allocation.x; 60 attributes.y = allocation.y; 61 attributes.width = allocation.width; 62 attributes.height = allocation.height; 164 static void webViewSizeAllocate(GtkWidget* widget, GtkAllocation* allocation) 167 GTK_WIDGET_CLASS(webViewWidgetParentClass)->size_allocate(widget, allocation); 168 webView->setSize(widget, IntSize(allocation->width, allocation->height)) [all...] |
/external/valgrind/main/drd/tests/ |
tc19_shadowmem.stderr.exp-32bit | 12 Address 0x........ is at offset 0 from 0x......... Allocation context: 21 Address 0x........ is at offset 1 from 0x......... Allocation context: 30 Address 0x........ is at offset 2 from 0x......... Allocation context: 39 Address 0x........ is at offset 3 from 0x......... Allocation context: 48 Address 0x........ is at offset 4 from 0x......... Allocation context: 57 Address 0x........ is at offset 5 from 0x......... Allocation context: 66 Address 0x........ is at offset 6 from 0x......... Allocation context: 75 Address 0x........ is at offset 7 from 0x......... Allocation context: 84 Address 0x........ is at offset 8 from 0x......... Allocation context: 93 Address 0x........ is at offset 9 from 0x......... Allocation context [all...] |
tc19_shadowmem.stderr.exp-64bit | 12 Address 0x........ is at offset 0 from 0x......... Allocation context: 21 Address 0x........ is at offset 1 from 0x......... Allocation context: 30 Address 0x........ is at offset 2 from 0x......... Allocation context: 39 Address 0x........ is at offset 3 from 0x......... Allocation context: 48 Address 0x........ is at offset 4 from 0x......... Allocation context: 57 Address 0x........ is at offset 5 from 0x......... Allocation context: 66 Address 0x........ is at offset 6 from 0x......... Allocation context: 75 Address 0x........ is at offset 7 from 0x......... Allocation context: 84 Address 0x........ is at offset 8 from 0x......... Allocation context: 93 Address 0x........ is at offset 9 from 0x......... Allocation context [all...] |
/external/qemu/memcheck/ |
memcheck.c | 68 " Allocation descriptor for this pointer has not been found in the\n" 69 " allocation map for the process. Most likely, this is an attempt\n" 79 * desc - Allocation descriptor for the violation. 167 printf(" Allocation descriptor for this violation:\n"); 178 * desc_ptr - Upon exit from this routine contains pointer to the allocation 179 * descriptor matching given address range, or NULL, if allocation 184 * process allocation descriptors map, or 254 /* Checks if process has allocation descriptors for pages defined by a buffer. 320 // Enable new PID allocation tracing. 390 * allocation descriptors map. * [all...] |
memcheck_common.h | 102 /* Id of the process that initialized libc instance, in which allocation 109 /* Id of the process in context of which allocation has occurred. 111 * is doing allocation has been forked from the process that initialized 116 /* Number of access violations detected on this allocation. */ 156 /* Code of the allocation routine, in context of which query has been made: 162 /* Address in guest's virtual space of memory allocation descriptor for the 204 /* Allocation descriptor this structure extends. */ 207 /* Call stack that lead to memory allocation. The array is arranged in 222 * allocations in the process' allocation descriptors map. 230 * flag marks entries in the forked process' allocation descriptors map tha [all...] |
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
PoolAlloc.h | 22 // * Makes each individual allocation much more efficient; the 23 // typical allocation is trivial. 39 // allocation. If we aren't using guard blocks, these 86 unsigned char* mem; // beginning of our allocation (pts to header) 87 TAllocation* prevAlloc; // prior allocation in the chain 108 // of each allocation obtained from the underlying OS. Multi-page allocations 133 // or if no last call to push, frees all memory since first allocation. 197 size_t pageSize; // granularity of allocation from the OS 235 // It will use the pools for allocation, and not
|
/system/extras/ext4_utils/ |
indirect.c | 28 /* Creates data buffers for the first backing_len bytes of a block allocation 166 /* Given an allocation, attach as many blocks as possible to direct inode 187 /* Given an allocation, attach as many blocks as possible to indirect blocks, 190 as part of the allocation */ 219 /* Given an allocation, attach as many blocks as possible to doubly indirect 222 blocks were included as part of the allocation */ 251 /* Given an allocation, attach as many blocks as possible to triply indirect 254 triply indirect blocks were included as part of the allocation */ 380 error("blocks left after triply-indirect allocation");
|