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

/external/chromium/chrome/browser/importer/
H A Dimporter.cc40 int new_width = decoded.width(); local
42 calc_favicon_target_size(&new_width, &new_height);
44 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height);
/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_favicon.cc59 int new_width = kIconSize; local
64 new_width = kIconSize * aspect_ratio;
66 if (new_width && new_height) {
69 new_width, new_height);
/external/libvpx/vpx_scale/include/generic/
H A Dvpxscale_arbitrary.h52 int new_width, int new_height);
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c580 int new_width, int new_height)
583 dst->y_width = new_width;
585 dst->uv_width = new_width / 2;
592 new_width, new_height, dst->y_stride,
596 new_width / 2, new_height / 2, dst->uv_stride,
600 new_width / 2, new_height / 2, dst->uv_stride,
579 bicubic_scale_frame(YV12_BUFFER_CONFIG *src, YV12_BUFFER_CONFIG *dst, int new_width, int new_height) argument
/external/linux-tools-perf/util/
H A Dsvghelper.c76 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/chrome/browser/printing/cloud_print/
H A Dcloud_print_setup_flow.cc319 FundamentalValue new_width(done_size.width());
322 new_width, new_height);
/external/chromium/chrome/browser/ui/gtk/
H A Dbrowser_actions_toolbar_gtk.cc719 void BrowserActionsToolbarGtk::SetButtonHBoxWidth(int new_width) { argument
721 new_width = std::min(max_width, new_width);
722 new_width = std::max(new_width, 0);
723 gtk_widget_set_size_request(button_hbox_.get(), new_width, -1);
834 gint new_width = button_hbox_->allocation.width - distance_dragged; local
835 SetButtonHBoxWidth(new_width);
H A Dbrowser_actions_toolbar_gtk.h134 // Sets the width of the button area of the toolbar to |new_width|, clamping
136 void SetButtonHBoxWidth(int new_width);
H A Dstatus_bubble_gtk.cc341 int new_width = start_width_ + local
343 gtk_widget_set_size_request(label_.get(), new_width, -1);
/external/chromium/chrome/browser/tab_contents/
H A Dthumbnail_generator.cc416 S16CPU new_width = static_cast<S16CPU>(bitmap.height() * dest_aspect); local
417 S16CPU x_offset = (bitmap.width() - new_width) / 2;
418 src_rect.set(x_offset, 0, new_width + x_offset, bitmap.height());
/external/chromium/chrome/browser/chromeos/notifications/
H A Dnotification_panel.cc751 int new_width = pref_size.width(); local
754 new_width += scroll_view_->GetScrollBarWidth();
756 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_);
763 int new_width = pref_size.width(); local
766 new_width += scroll_view_->GetScrollBarWidth();
767 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_);
/external/libvpx/vp8/encoder/
H A Dfirstpass.c2715 int new_width = cpi->oxcf.Width; local
2780 fprintf(f, " %8d %8d %8d %8d %12.0f %8d %8d %8d\n", cpi->common.current_video_frame, kf_q, cpi->common.horiz_scale, cpi->common.vert_scale, kf_group_err / cpi->frames_to_key, (int)(cpi->kf_group_bits / cpi->frames_to_key), new_height, new_width);
2824 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs;
2829 effective_size_ratio = (double)(new_width * new_height) / (double)(cpi->oxcf.Width * cpi->oxcf.Height);
2838 fprintf(f, "******** %8d %8d %8d %12.0f %8d %8d %8d\n", kf_q, cpi->common.horiz_scale, cpi->common.vert_scale, kf_group_err / cpi->frames_to_key, (int)(cpi->kf_group_bits / cpi->frames_to_key), new_height, new_width);
2844 if ((cpi->common.Width != new_width) || (cpi->common.Height != new_height))
2846 cpi->common.Width = new_width;
H A Donyx_if.c2674 int new_width, new_height; local
2692 new_width = ((hs - 1) + (cpi->oxcf.Width * hr)) / hs;
2697 if ((cm->Width != new_width) || (cm->Height != new_height))
2699 cm->Width = new_width;
/external/opencv/cxcore/src/
H A Dcxarray.cpp3108 int total_width, new_width; local
3164 new_width = total_width / new_cn;
3166 if( new_width * new_cn != total_width )
3170 header->cols = new_width;

Completed in 212 milliseconds