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/libvpx/vpx_scale/generic/
H A Dbicubic_scaler.c548 int new_width, int new_height) {
551 dst->y_height = new_height;
553 dst->uv_height = new_height / 2;
559 new_width, new_height, dst->y_stride,
563 new_width / 2, new_height / 2, dst->uv_stride,
567 new_width / 2, new_height / 2, dst->uv_stride,
547 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/libvpx/vp8/encoder/
H A Dfirstpass.c3202 int new_height = cpi->oxcf.Height; local
3276 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->twopass.frames_to_key, (int)(cpi->twopass.kf_group_bits / cpi->twopass.frames_to_key), new_height, new_width);
3328 new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs;
3334 effective_size_ratio = (double)(new_width * new_height) / (double)(cpi->oxcf.Width * cpi->oxcf.Height);
3347 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->twopass.frames_to_key, (int)(cpi->twopass.kf_group_bits / cpi->twopass.frames_to_key), new_height, new_width);
3353 if ((cpi->common.Width != new_width) || (cpi->common.Height != new_height))
3356 cpi->common.Height = new_height;
H A Donyx_if.c2619 int new_width, new_height; local
2640 new_height = ((vs - 1) + (cpi->oxcf.Height * vr)) / vs;
2645 if ((cm->Width != new_width) || (cm->Height != new_height))
2648 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 1002 milliseconds