Searched defs:allocation (Results 1 - 16 of 16) sorted by relevance

/external/webkit/JavaScriptCore/jit/
H A DExecutableAllocatorWin.cpp45 void* allocation = VirtualAlloc(0, n, MEM_COMMIT | MEM_RESERVE, PAGE_EXECUTE_READWRITE); local
46 if (!allocation)
48 ExecutablePool::Allocation alloc = {reinterpret_cast<char*>(allocation), n};
H A DExecutableAllocatorPosix.cpp47 void* allocation = mmap(NULL, n, INITIAL_PROTECTION_FLAGS, MAP_PRIVATE | MAP_ANON, VM_TAG_FOR_EXECUTABLEALLOCATOR_MEMORY, 0); local
48 if (allocation == MAP_FAILED)
50 ExecutablePool::Allocation alloc = { reinterpret_cast<char*>(allocation), n };
H A DExecutableAllocatorSymbian.cpp56 char* allocation = reinterpret_cast<char*>(codeChunk->Base()); local
57 if (!allocation)
59 ExecutablePool::Allocation alloc = { allocation, n, codeChunk };
H A DExecutableAllocatorFixedVMPool.cpp316 // is for a common sized allocation, check this list.
352 // If the allocation exactly fits the chunk we found in the,
437 void ExecutablePool::systemRelease(const ExecutablePool::Allocation& allocation) argument
442 allocator->free(allocation.pages, allocation.size);
/external/webkit/WebCore/platform/gtk/
H A DGtkPluginWidget.cpp61 GtkAllocation allocation = { loc.x(), loc.y(), rect.width(), rect.height() }; local
64 gtk_widget_size_allocate(platformWidget(), &allocation); local
H A DScrollbarGtk.cpp150 // Don't allow the allocation size to be negative
154 GtkAllocation allocation = { loc.x(), loc.y(), sz.width(), sz.height() }; local
155 gtk_widget_size_allocate(platformWidget(), &allocation); local
/external/bluetooth/bluez/audio/
H A Dgstsbcenc.h56 gint allocation; member in struct:_GstSbcEnc
H A Dgstsbcutil.c80 * Selects one allocation mode from the ones on the list
278 gint gst_sbc_parse_allocation_to_sbc(const gchar *allocation) argument
280 if (g_ascii_strcasecmp(allocation, "loudness") == 0)
282 else if (g_ascii_strcasecmp(allocation, "snr") == 0)
295 allocation_str = gst_sbc_parse_allocation_from_sbc(sbc->allocation);
306 "allocation", G_TYPE_STRING, allocation_str,
328 const gchar *allocation = NULL; local
400 if (!gst_structure_has_field(structure, "allocation")) {
402 *error_message = g_strdup("no allocation");
405 value = gst_structure_get_value(structure, "allocation");
487 const gchar *allocation; local
[all...]
/external/webkit/WebKit/gtk/tests/
H A Dtesthittestresult.c103 GtkAllocation allocation = { 0, 0, 50, 50 }; local
110 gtk_widget_size_allocate(GTK_WIDGET(fixture->webView), &allocation);
/external/bluetooth/bluez/sbc/
H A Dsbc.h54 /* allocation method */
73 uint8_t allocation; member in struct:sbc_struct
H A Dsbc.c30 bits allocation/bitpool generation port to the dsp
69 } allocation; member in struct:sbc_frame
172 if (frame->allocation == SNR) {
251 if (frame->allocation == SNR) {
414 frame->allocation = (data[1] >> 1) & 0x01;
773 data[1] |= (frame->allocation & 0x01) << 1;
1013 sbc->allocation = priv->frame.allocation;
1078 priv->frame.allocation = sbc->allocation;
[all...]
/external/webkit/JavaScriptCore/runtime/
H A DJSString.h126 void* allocation; local
127 if (tryFastMalloc(sizeof(Rope) + (ropeLength - 1) * sizeof(Fiber)).getValue(allocation))
128 return adoptRef(new (allocation) Rope(ropeLength));
/external/webkit/WebCore/plugins/gtk/
H A DPluginViewGtk.cpp537 GtkAllocation allocation = { m_windowRect.x(), m_windowRect.y(), m_windowRect.width(), m_windowRect.height() }; local
538 gtk_widget_size_allocate(platformPluginWidget(), &allocation); local
H A Dgtk2xtbin.c271 GtkAllocation allocation = { 0, 0, 200, 200 }; local
282 /* caculate the allocation before realize */
284 allocation.width = w;
285 allocation.height = h;
286 gtk_widget_size_allocate (widget, &allocation);
289 printf("initial allocation %d %d %d %d\n", x, y, w, h);
292 xtbin->width = widget->allocation.width;
293 xtbin->height = widget->allocation.height;
415 GtkAllocation allocation; local
435 allocation
[all...]
/external/webkit/WebKit/gtk/WebCoreSupport/
H A DChromeClientGtk.cpp95 GtkAllocation allocation = GTK_WIDGET(m_webView)->allocation; local
96 return IntRect(allocation.x, allocation.y, allocation.width, allocation.height);
/external/webkit/WebKit/gtk/webkit/
H A Dwebkitwebview.cpp624 static void webkit_web_view_size_allocate(GtkWidget* widget, GtkAllocation* allocation) argument
626 GTK_WIDGET_CLASS(webkit_web_view_parent_class)->size_allocate(widget,allocation);
634 frame->view()->resize(allocation->width, allocation->height);
693 attributes.x = widget->allocation.x;
694 attributes.y = widget->allocation.y;
695 attributes.width = widget->allocation.width;
696 attributes.height = widget->allocation.height;

Completed in 180 milliseconds