HomeSort by relevance Sort by last modified time
    Searched full:allocation (Results 451 - 475 of 5153) sorted by null

<<11121314151617181920>>

  /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/chromium_org/content/browser/loader/
resource_buffer.h 17 // ResourceBuffer implements a simple "circular buffer" allocation strategy.
54 // the last allocation made. Calling ShrinkLastAllocation is optional, as it
90 // Returns the offset into the shared memory buffer where the last allocation
94 // Called to reduce the size of the last allocation returned by Allocate. It
95 // is OK for new_size to match the current size of the last allocation.
115 // alloc_end_ points just beyond the end of the previous allocation. In the
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
turnserver.h 120 class Allocation;
123 typedef std::map<Connection, Allocation*> AllocationMap;
146 Allocation* FindAllocation(Connection* conn);
147 Allocation* CreateAllocation(Connection* conn, int proto,
160 void OnAllocationDestroyed(Allocation* allocation);
  /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
34 /// This class wraps up a PBQP instance representing a register allocation
36 /// to a register allocation solution. (i.e. The PBQP-node <--> vreg map,
108 /// Builds PBQP instances to represent register allocation problems. Includes
125 /// Build a PBQP instance to represent the register allocation problem for
144 /// 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>&nbsp;<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/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]);
117 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
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...]
  /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;
488 mInPixelsAllocation = Allocation.createFromBitmap(mRS, mBitmapIn,
489 Allocation.MipmapControl.MIPMAP_NONE,
490 Allocation.USAGE_SHARED |
491 Allocation.USAGE_GRAPHICS_TEXTURE |
492 Allocation.USAGE_SCRIPT);
493 mInPixelsAllocation2 = Allocation.createFromBitmap(mRS, mBitmapIn2
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/bubble/
bubble_gtk.cc 428 GtkAllocation allocation; local
429 gtk_widget_get_allocation(window_, &allocation);
434 allocation.width,
435 allocation.height);
452 GtkAllocation allocation; local
453 gtk_widget_get_allocation(window_, &allocation);
455 actual_frame_style_, allocation.width, allocation.height,
493 GtkAllocation allocation; local
494 gtk_widget_get_allocation(window_, &allocation);
500 GtkAllocation allocation; local
515 GtkAllocation allocation; local
672 GtkAllocation allocation; local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicHistogram.cpp 39 void preLaunch(uint32_t slot, const Allocation * ain,
40 Allocation * aout, const void * usr,
42 void postLaunch(uint32_t slot, const Allocation * ain,
43 Allocation * aout, const void * usr,
50 ObjectBaseRef<Allocation> mAllocOut;
85 mAllocOut.set(static_cast<Allocation *>(data));
100 void RsdCpuScriptIntrinsicHistogram::preLaunch(uint32_t slot, const Allocation * ain,
101 Allocation * aout, const void * usr,
145 void RsdCpuScriptIntrinsicHistogram::postLaunch(uint32_t slot, const Allocation * ain,
146 Allocation * aout, const void * usr
    [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...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
BackingStore.java 20 import android.renderscript.Allocation;
45 /** Access mode Allocation: Frame data will be accessed as a RenderScript Allocation. */
533 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION); local
534 allocation.copyTo(mBitmap);
626 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION) local
748 Allocation allocation = (Allocation) backing.lock(ACCESS_ALLOCATION); local
    [all...]
  /external/chromium_org/content/common/gpu/
image_transport_surface_win.cc 59 // Tracks the current buffer allocation state.
160 bool PbufferImageTransportSurface::SetBackbufferAllocation(bool allocation) {
161 if (backbuffer_suggested_allocation_ == allocation)
163 backbuffer_suggested_allocation_ = allocation;
173 void PbufferImageTransportSurface::SetFrontbufferAllocation(bool allocation) {
174 if (frontbuffer_suggested_allocation_ == allocation)
176 frontbuffer_suggested_allocation_ = allocation;
  /external/chromium_org/chrome/browser/ui/gtk/
browser_toolbar_gtk.cc 528 GtkAllocation allocation; local
529 gtk_widget_get_allocation(widget, &allocation);
531 gfx::Rect right(allocation.x + allocation.width - kCornerWidth,
532 allocation.y - kShadowThickness,
534 allocation.height + kShadowThickness);
535 gfx::Rect left(allocation.x - kShadowThickness,
536 allocation.y - kShadowThickness,
538 allocation.height + kShadowThickness);
567 allocation.x + allocation.width
613 GtkAllocation allocation; local
    [all...]
custom_button.cc 103 GtkAllocation allocation; local
104 gtk_widget_get_allocation(widget, &allocation);
105 cairo_translate(cairo_context, allocation.x, allocation.y);
109 cairo_translate(cairo_context, allocation.width, 0.0f);
117 int y = allocation.height - pixbuf->Height();
314 GtkAllocation allocation; local
315 gtk_widget_get_allocation(widget_.get(), &allocation);
316 return allocation;
  /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/chromium_org/third_party/icu/source/common/
cmemory.h 80 * Indicate whether the ICU allocation functions have been used.
131 * If the allocation fails, then the current array is unchanged and
134 * @return the allocated array pointer, or NULL if the allocation failed
140 * If the allocation fails, then the current array is unchanged and
146 * @return the allocated array pointer, or NULL if the allocation failed
261 * If the allocation fails, then the current array is unchanged and
266 * @return the allocated array pointer, or NULL if the allocation failed
272 * Returns NULL if the allocation failed.
298 // No heap allocation. Use only on the stack.
434 * If the allocation fails, then the current memory is unchanged an
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
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...]

Completed in 950 milliseconds

<<11121314151617181920>>