HomeSort by relevance Sort by last modified time
    Searched defs:dest_w (Results 1 - 5 of 5) sorted by null

  /external/chromium/chrome/browser/ui/views/
tab_icon_view.cc 126 int dest_w = static_cast<int>(float_src_w * scale); local
131 (width() - dest_w) / 2, (height() - dest_h) / 2, dest_w,
  /external/chromium_org/chrome/browser/ui/views/
tab_icon_view.cc 130 int dest_w = static_cast<int>(float_src_w * scale); local
135 (width() - dest_w) / 2, (height() - dest_h) / 2, dest_w,
  /external/chromium_org/skia/ext/
image_operations_unittest.cc 263 int dest_w, int dest_h, SkColor average_color,
271 { dest_w - 1, 0, 2.3f, "Top right corner" },
272 { dest_w - 1, dest_h - 1, 2.3f, "Bottom right corner" },
274 { dest_w / 2, 0, 1.0f, "Top middle" },
275 { dest_w / 2, dest_h - 1, 1.0f, "Bottom middle" },
277 { dest_w - 1, dest_h / 2, 1.0f, "Right middle" },
279 { dest_w / 2, dest_h / 2, 1.0f, "Center" }
285 SkBitmap dest = skia::ImageOperations::Resize(src, method, dest_w, dest_h);
286 ASSERT_EQ(dest_w, dest.width());
495 const int dest_w = src_w / (4 * checker_rect_w) local
569 const int dest_w = src_w \/ 4; local
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
gtk_util.cc 207 // Taking the ceiling of the scaled destination rect's dimensions (|dest_w|
219 const int dest_w = ::ceil(ew * emblem_scale); local
221 const int x = iw - dest_w; // Used for offset_x and dest_x.
226 dest_w, dest_h,
    [all...]
  /hardware/samsung_slsi/exynos5/libhwc/
hwc.cpp 361 static bool dst_crop_w_aligned(int dest_w)
368 return (dest_w % dst_crop_w_alignement) == 0;
384 int dest_w, dest_h; local
386 dest_w = HEIGHT(layer.displayFrame);
389 dest_w = WIDTH(layer.displayFrame);
394 align_crop_and_center(dest_w, dest_h, NULL,
401 dst_crop_w_aligned(dest_w) &&
404 src_w < dest_w * max_downscale &&
405 dest_w <= src_w * max_upscale &&
    [all...]

Completed in 406 milliseconds