Home
last modified time | relevance | path

Searched refs:new_width (Results 1 – 14 of 14) sorted by relevance

/external/chromium/chrome/browser/chromeos/
Dwm_overview_favicon.cc59 int new_width = kIconSize; in SetFavicon() local
64 new_width = kIconSize * aspect_ratio; in SetFavicon()
66 if (new_width && new_height) { in SetFavicon()
69 new_width, new_height); in SetFavicon()
/external/chromium/chrome/browser/importer/
Dimporter.cc40 int new_width = decoded.width(); in ReencodeFavicon() local
42 calc_favicon_target_size(&new_width, &new_height); in ReencodeFavicon()
44 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height); in ReencodeFavicon()
/external/libvpx/vpx_scale/generic/
Dbicubic_scaler.c580 int new_width, int new_height) in bicubic_scale_frame() argument
583 dst->y_width = new_width; in bicubic_scale_frame()
585 dst->uv_width = new_width / 2; in bicubic_scale_frame()
592 new_width, new_height, dst->y_stride, in bicubic_scale_frame()
596 new_width / 2, new_height / 2, dst->uv_stride, in bicubic_scale_frame()
600 new_width / 2, new_height / 2, dst->uv_stride, in bicubic_scale_frame()
/external/chromium/chrome/browser/ui/gtk/
Dbrowser_actions_toolbar_gtk.cc719 void BrowserActionsToolbarGtk::SetButtonHBoxWidth(int new_width) { in SetButtonHBoxWidth() argument
721 new_width = std::min(max_width, new_width); in SetButtonHBoxWidth()
722 new_width = std::max(new_width, 0); in SetButtonHBoxWidth()
723 gtk_widget_set_size_request(button_hbox_.get(), new_width, -1); in SetButtonHBoxWidth()
834 gint new_width = button_hbox_->allocation.width - distance_dragged; in OnGripperMotionNotify() local
835 SetButtonHBoxWidth(new_width); in OnGripperMotionNotify()
Dstatus_bubble_gtk.cc341 int new_width = start_width_ + in UpdateLabelSizeRequest() local
343 gtk_widget_set_size_request(label_.get(), new_width, -1); in UpdateLabelSizeRequest()
Dbrowser_actions_toolbar_gtk.h136 void SetButtonHBoxWidth(int new_width);
/external/linux-tools-perf/util/
Dsvghelper.c76 int new_width; in open_svg() local
91 new_width = (last_time - first_time) / 5000000; in open_svg()
93 if (new_width > svg_page_width) in open_svg()
94 svg_page_width = new_width; in open_svg()
/external/chromium/chrome/browser/chromeos/notifications/
Dnotification_panel.cc751 int new_width = pref_size.width(); in GetPreferredBounds() local
754 new_width += scroll_view_->GetScrollBarWidth(); in GetPreferredBounds()
756 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_); in GetPreferredBounds()
763 int new_width = pref_size.width(); in GetStickyNewBounds() local
766 new_width += scroll_view_->GetScrollBarWidth(); in GetStickyNewBounds()
767 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_); in GetStickyNewBounds()
/external/libvpx/vpx_scale/include/generic/
Dvpxscale_arbitrary.h52 int new_width, int new_height);
/external/chromium/chrome/browser/tab_contents/
Dthumbnail_generator.cc416 S16CPU new_width = static_cast<S16CPU>(bitmap.height() * dest_aspect); in GetClippedBitmap() local
417 S16CPU x_offset = (bitmap.width() - new_width) / 2; in GetClippedBitmap()
418 src_rect.set(x_offset, 0, new_width + x_offset, bitmap.height()); in GetClippedBitmap()
/external/chromium/chrome/browser/printing/cloud_print/
Dcloud_print_setup_flow.cc319 FundamentalValue new_width(done_size.width()); in ShowSetupDone() local
322 new_width, new_height); in ShowSetupDone()
/external/libvpx/vp8/encoder/
Dfirstpass.c2715 int new_width = cpi->oxcf.Width; in find_next_key_frame() local
2780 …p_err / cpi->frames_to_key, (int)(cpi->kf_group_bits / cpi->frames_to_key), new_height, new_width); in find_next_key_frame()
2824 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs; in find_next_key_frame()
2829 …effective_size_ratio = (double)(new_width * new_height) / (double)(cpi->oxcf.Width * cpi->oxcf.Hei… in find_next_key_frame()
2838 …p_err / cpi->frames_to_key, (int)(cpi->kf_group_bits / cpi->frames_to_key), new_height, new_width); in find_next_key_frame()
2844 if ((cpi->common.Width != new_width) || (cpi->common.Height != new_height)) in find_next_key_frame()
2846 cpi->common.Width = new_width; in find_next_key_frame()
Donyx_if.c2674 int new_width, new_height; in resize_key_frame() local
2692 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs; in resize_key_frame()
2697 if ((cm->Width != new_width) || (cm->Height != new_height)) in resize_key_frame()
2699 cm->Width = new_width; in resize_key_frame()
/external/opencv/cxcore/src/
Dcxarray.cpp3108 int total_width, new_width; in cvReshape() local
3164 new_width = total_width / new_cn; in cvReshape()
3166 if( new_width * new_cn != total_width ) in cvReshape()
3170 header->cols = new_width; in cvReshape()