HomeSort by relevance Sort by last modified time
    Searched refs:new_width (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/chrome/utility/importer/
favicon_reencode.cc 29 int new_width = decoded.width(); local
31 gfx::CalculateFaviconTargetSize(&new_width, &new_height);
33 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height);
  /external/chromium_org/ash/desktop_background/
wallpaper_resizer.cc 38 const int new_width = target_size.width(); local
41 if (orig_width > new_width || orig_height > new_height) {
43 gfx::Size cropped_size = gfx::Size(std::min(new_width, orig_width),
59 new_width, new_height);
62 if (orig_width > new_width && orig_height > new_height) {
65 double horizontal_ratio = static_cast<double>(new_width) /
72 RoundPositive(static_cast<double>(new_width) / vertical_ratio),
84 new_width, new_height);
  /external/chromium_org/chrome/browser/ui/views/status_icons/
status_tray_state_changer_interactive_uitest_win.cc 159 LONG new_width = new_tray_notify_rect.right - new_tray_notify_rect.left; local
161 EXPECT_GT(new_width, width);
165 new_width = new_tray_notify_rect.right - new_tray_notify_rect.left;
166 EXPECT_EQ(width, new_width);
  /external/chromium_org/native_client_sdk/src/examples/api/graphics_3d/
graphics_3d.cc 253 int32_t new_width = view.GetRect().width() * view.GetDeviceScale(); local
257 if (!InitGL(new_width, new_height)) {
268 int32_t result = context_.ResizeBuffers(new_width, new_height);
272 new_width,
278 width_ = new_width;
322 bool InitGL(int32_t new_width, int32_t new_height) {
331 PP_GRAPHICS3DATTRIB_WIDTH, new_width,
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/cube/
cube.cc 253 int32_t new_width = view.GetRect().width(); local
257 if (!InitGL(new_width, new_height)) {
268 int32_t result = context_.ResizeBuffers(new_width, new_height);
272 new_width,
278 width_ = new_width;
322 bool InitGL(int32_t new_width, int32_t new_height) {
331 PP_GRAPHICS3DATTRIB_WIDTH, new_width,
  /external/chromium_org/ppapi/cpp/
rect.cc 113 int32_t new_width = width(); local
115 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width);
117 return Rect(new_x, new_y, new_width, new_height);
217 float new_width = width(); local
219 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width);
221 return FloatRect(new_x, new_y, new_width, new_height);
  /external/chromium_org/third_party/libjingle/source/talk/media/base/
videoadapter.cc 502 int new_width, new_height; local
503 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
508 << " To: " << new_width << "x" << new_height;
572 int new_width, new_height; local
573 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
587 << " To: " << new_width << "x" << new_height;
633 int new_width, new_height; local
634 bool changed = AdaptToMinimumFormat(&new_width, &new_height);
640 << " To: " << new_width << "x" << new_height;
699 bool CoordinatedVideoAdapter::AdaptToMinimumFormat(int* new_width,
    [all...]
videoadapter.h 180 bool AdaptToMinimumFormat(int* new_width, int* new_height);
  /external/chromium_org/ui/gfx/geometry/
rect_base_impl.h 253 Type new_width = width(); local
255 AdjustAlongAxis(rect.x(), rect.width(), &new_x, &new_width);
257 SetRect(new_x, new_y, new_width, new_height);
279 Type new_width = std::min(width(), size.width()); local
281 Type new_x = x() + (width() - new_width) / 2;
283 SetRect(new_x, new_y, new_width, new_height);
  /external/chromium_org/chrome/browser/thumbnails/
simple_thumbnail_crop.cc 163 int new_width = static_cast<int>(source_size.height() * desired_aspect); local
164 int x_offset = (source_size.width() - new_width) / 2;
165 clipping_rect.SetRect(x_offset, 0, new_width, source_size.height());
  /external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
webrtcvideoframe.cc 319 int new_width = dw; local
322 new_width = dh;
326 size_t desired_size = SizeOf(new_width, new_height);
331 Attach(video_buffer.get(), desired_size, new_width, new_height, pixel_width,
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
svghelper.c 76 int new_width; local
91 new_width = (last_time - first_time) / 5000000;
93 if (new_width > svg_page_width)
94 svg_page_width = new_width;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
r600_blit.c 275 int new_height, new_width; local
290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
293 tex->width0 = new_width;
  /external/mesa3d/src/gallium/drivers/radeonsi/
r600_blit.c 275 int new_height, new_width; local
290 new_width = util_format_get_nblocksx(tex->format, orig->width0);
293 tex->width0 = new_width;
  /external/chromium_org/chrome/browser/ui/panels/
panel.cc 684 int new_width = size.width(); local
685 if (new_width > max_size_.width())
686 new_width = max_size_.width();
687 if (new_width < min_size_.width())
688 new_width = min_size_.width();
698 return gfx::Size(new_width, new_height);
  /external/chromium_org/third_party/skia/src/effects/
SkBlurMask.cpp 87 int new_width = width + SkMax32(leftRadius, rightRadius) * 2; local
89 int dst_y_stride = transpose ? 1 : new_width;
225 return new_width;
278 * return new_width;
294 int new_width = width + diameter; local
296 int dst_y_stride = transpose ? 1 : new_width;
406 return new_width;
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
stacked_tab_strip_layout_unittest.cc 403 int new_width; member in struct:TestData
425 layout_->SetWidth(test_data[i].new_width);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
r600_blit.c 577 int new_height, new_width; local
592 new_width = util_format_get_nblocksx(tex->format, orig->width0);
595 tex->width0 = new_width;
  /external/mesa3d/src/gallium/drivers/r600/
r600_blit.c 577 int new_height, new_width; local
592 new_width = util_format_get_nblocksx(tex->format, orig->width0);
595 tex->width0 = new_width;
  /external/chromium_org/third_party/libvpx/source/libvpx/vp8/encoder/
firstpass.c 3208 int new_width = cpi->oxcf.Width; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
firstpass.c 3208 int new_width = cpi->oxcf.Width; local
    [all...]
  /external/chromium_org/ash/wm/dock/
docked_window_layout_manager.cc 1161 int new_width = ideal_docked_width; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wmesa.c 962 GLuint new_width, new_height; local
964 wmesa_get_buffer_size(ctx->WinSysDrawBuffer, &new_width, &new_height);
969 wmesa_resize_buffers(ctx, ctx->WinSysDrawBuffer, new_width, new_height);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
qm_select_unittest.cc 66 uint16_t new_width,
    [all...]
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wmesa.c 962 GLuint new_width, new_height; local
964 wmesa_get_buffer_size(ctx->WinSysDrawBuffer, &new_width, &new_height);
969 wmesa_resize_buffers(ctx, ctx->WinSysDrawBuffer, new_width, new_height);
    [all...]

Completed in 1017 milliseconds

1 2