/frameworks/rs/ |
rs_hal.h | 31 class Allocation; 112 const Allocation * ain, 113 Allocation * aout, 137 Allocation *data); 146 bool (*init)(const Context *rsc, Allocation *alloc, bool forceZero); 147 void (*destroy)(const Context *rsc, Allocation *alloc); 148 uint32_t (*grallocBits)(const Context *rsc, Allocation *alloc); 150 void (*resize)(const Context *rsc, const Allocation *alloc, const Type *newType, 152 void (*syncAll)(const Context *rsc, const Allocation *alloc, RsAllocationUsageType src); 153 void (*markDirty)(const Context *rsc, const Allocation *alloc) 224 } allocation; member in struct:android::renderscript::__anon33393 [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...] |
/packages/wallpapers/Basic/src/com/android/wallpaper/grass/ |
GrassRS.java | 58 //private Allocation mBladesBuffer; 59 private Allocation mBladesIndicies; 202 mBladesIndicies = Allocation.createSized(mRS, Element.U16(mRS), mIndicies); 255 private Allocation generateTextureAlpha() { 261 final Allocation allocation = Allocation.createTyped(mRS, builder.create(), local 262 Allocation.USAGE_GRAPHICS_TEXTURE); 267 AllocationAdapter a = AllocationAdapter.create2D(mRS, allocation); 275 return allocation; [all...] |
/packages/wallpapers/Galaxy4/src/com/android/galaxy4/ |
GalaxyRS.java | 6 import android.renderscript.Allocation; 48 private Allocation mCloudAllocation; 49 private Allocation mStaticStarAllocation; 50 private Allocation mStaticStar2Allocation; 51 private Allocation mBgAllocation; 108 private Allocation loadTexture(int id) { 109 final Allocation allocation = Allocation.createFromBitmapResource(mRS, mRes, id, local 110 Allocation.MipmapControl.MIPMAP_NONE [all...] |
/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;
|
/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...] |
/external/chromium_org/chrome/browser/ui/gtk/ |
browser_actions_toolbar_gtk.cc | 348 GtkAllocation allocation; local 349 gtk_widget_get_allocation(widget, &allocation); 350 action->PaintBadge(&canvas, gfx::Rect(allocation), tab_id); 719 GtkAllocation allocation; local 720 gtk_widget_get_allocation(button_hbox_.get(), &allocation); 721 start_width_ = allocation.width; 916 GtkAllocation allocation; local 917 gtk_widget_get_allocation(widget, &allocation); 918 x = allocation.width - x; 1029 GtkAllocation allocation; local [all...] |
browser_titlebar.cc | 885 GtkAllocation allocation; local [all...] |
find_bar_gtk.cc | 400 GtkAllocation allocation; local 401 gtk_widget_get_allocation(widget(), &allocation); local 402 if (xposition != allocation.x) 606 GtkAllocation allocation; local 607 gtk_widget_get_allocation(container_, &allocation); 608 return allocation.width; 772 GtkAllocation* allocation, 885 GtkAllocation allocation; local [all...] |
gtk_theme_service.cc | 1158 GtkAllocation allocation; local [all...] |
gtk_util.cc | 535 GtkAllocation allocation; 536 gtk_widget_get_allocation(widget, &allocation); 537 return allocation.width - bounds.x() - bounds.width(); 544 GtkAllocation allocation; 545 gtk_widget_get_allocation(widget, &allocation); 546 return allocation.width - bounds.x(); 551 GtkAllocation allocation; local 552 gtk_widget_get_allocation(widget, &allocation); 553 return allocation.width - x; 790 GtkAllocation allocation; local 836 GtkAllocation allocation; local [all...] |
location_bar_view_gtk.cc | 314 gfx::Rect AllocationToRect(const GtkAllocation& allocation) { 315 return gfx::Rect(allocation.x, allocation.y, 316 allocation.width, allocation.height); 1024 GtkAllocation allocation; local 1078 GtkAllocation allocation; local 1252 GtkAllocation allocation; local 2104 GtkAllocation allocation; local [all...] |
browser_window_gtk.cc | 1865 GtkAllocation allocation; local 1866 gtk_widget_get_allocation(GTK_WIDGET(window_), &allocation); local 1932 GtkAllocation allocation; local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/panels/ |
panel_gtk.cc | 1094 GtkAllocation allocation; local 1095 gtk_widget_get_allocation(GTK_WIDGET(window_), &allocation); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
turnserver.cc | 72 // Encapsulates a TURN allocation. 73 // The object is created when an allocation request is received, and then 75 // (via HandleChannelData) for this allocation when received by the server. 77 class TurnServer::Allocation : public talk_base::MessageHandler, 80 Allocation(TurnServer* server_, 84 virtual ~Allocation(); 98 sigslot::signal1<Allocation*> SignalDestroyed; 147 // allocation, and self-deletes when its lifetime timer expires. 167 // allocation, and self-deletes when its lifetime timer expires. 298 // This is a channel message; let the allocation handle it 299 Allocation* allocation = FindAllocation(&conn); local 323 Allocation* allocation = FindAllocation(conn); local 417 Allocation* allocation = FindAllocation(conn); local 527 Allocation* allocation = new Allocation(this, local [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...] |
/hardware/qcom/media/mm-video-legacy/vidc/venc/src/ |
video_encoder_device.cpp | 1292 struct pmem_allocation allocation; local [all...] |
video_encoder_device_copper.cpp | 1224 struct pmem_allocation allocation; local [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/venc/src/ |
video_encoder_device.cpp | 1397 struct pmem_allocation allocation; local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/bookmarks/ |
bookmark_bar_gtk.cc | 333 GtkAllocation allocation; local 334 gtk_widget_get_allocation(event_box_.get(), &allocation); 335 return allocation.height - kBookmarkBarMinimumHeight; 530 GtkAllocation allocation; local 531 gtk_widget_get_allocation(overflow_button_, &allocation); 532 extra_space = allocation.width; 626 GtkAllocation allocation; local 627 gtk_widget_get_allocation(bookmark_toolbar_.get(), &allocation); 628 int total_width = allocation.width - 2; 747 GtkAllocation* allocation) { 857 GtkAllocation allocation; local 1461 GtkAllocation allocation; local [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tabs/ |
tab_renderer_gtk.cc | 583 // The tabstrip widget is a windowless widget so the tab widget's allocation 885 GtkAllocation allocation; local 886 gtk_widget_get_allocation(widget, &allocation); 887 gfx::Rect bounds(allocation); [all...] |
/external/chromium_org/content/browser/renderer_host/ |
render_widget_host_view_gtk.cc | 211 GdkRectangle* allocation, 214 host_view->SetSize(gfx::Size(allocation->width, allocation->height)); 337 GtkAllocation allocation; local 338 gtk_widget_get_allocation(widget, &allocation); 339 bool click_in_popup = x >= 0 && y >= 0 && x < allocation.width && 340 y < allocation.height; 1134 GtkAllocation allocation; local [all...] |
/external/clang/lib/CodeGen/ |
CGExprCXX.cpp | 714 // Don't allow allocation of fewer elements than we have initializers. 736 // allocation fails. 1275 llvm::Value *allocation = RV.getScalarVal(); local [all...] |
/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...] |
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
omx_vdec_copper.cpp | 7141 struct pmem_allocation allocation; local [all...] |