Searched defs:new_height (Results 1 - 7 of 7) sorted by relevance

/external/chromium/chrome/browser/chromeos/
H A Dwm_overview_favicon.cc60 int new_height = kIconSize; local
62 new_height = kIconSize / aspect_ratio;
66 if (new_width && new_height) {
69 new_width, new_height);
/external/chromium/chrome/browser/importer/
H A Dimporter.cc41 int new_height = decoded.height(); local
42 calc_favicon_target_size(&new_width, &new_height);
44 decoded, skia::ImageOperations::RESIZE_LANCZOS3, new_width, new_height);
/external/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c580 int new_width, int new_height)
584 dst->y_height = new_height;
586 dst->uv_height = new_height / 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/chromium/chrome/browser/chromeos/notifications/
H A Dnotification_panel.cc750 int new_height = std::min(pref_size.height(), kMaxPanelHeight); local
753 if (new_height != pref_size.height()) {
756 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_);
762 int new_height = std::min(sticky_size.height(), kMaxPanelHeight); local
765 if (new_height != pref_size.height())
767 return gfx::Rect(0, 0, new_width, new_height).Union(min_bounds_);
/external/libvpx/vp8/encoder/
H A Dfirstpass.c2716 int new_height = cpi->oxcf.Height; 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);
2825 new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs;
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))
2847 cpi->common.Height = new_height;
H A Donyx_if.c2674 int new_width, new_height; local
2693 new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs;
2697 if ((cm->Width != new_width) || (cm->Height != new_height))
2700 cm->Height = new_height;
/external/chromium/chrome/browser/ui/views/frame/
H A Dbrowser_view.cc2070 int new_height = 0; local
2072 new_height = new_view->GetPreferredSize().height();
2076 if (new_height != current_height) {
2084 DCHECK_EQ(0, new_height);

Completed in 283 milliseconds