Lines Matching defs:height
35 int width, height, bpp, pitch;
41 height = vbox_crtc->height ? vbox_crtc->height : 480;
57 vbox_write_ioport(VBE_DISPI_INDEX_YRES, height);
74 pitch, width, height, bpp, flags);
123 u16 width = 0, height = 0;
149 vbox->input_mapping_height = fb1->height;
161 height = max_t(u16, height, vbox_crtc->y_hint +
162 vbox_connector->mode_hint.height);
167 vbox->input_mapping_height = height;
185 vbox_crtc->height = crtc->state->mode.vdisplay;
330 u32 height = new_state->crtc_h;
350 if (width > VBOX_MAX_CURSOR_WIDTH || height > VBOX_MAX_CURSOR_HEIGHT ||
351 width == 0 || height == 0)
362 static void copy_cursor_image(u8 *src, u8 *dst, u32 width, u32 height,
368 memcpy(dst + mask_size, src, width * height * 4);
369 for (i = 0; i < height; ++i)
384 u32 height = plane->state->crtc_h;
415 mask_size = ((width + 7) / 8 * height + 3) & ~3;
416 data_size = width * height * 4 + mask_size;
418 copy_cursor_image(src, vbox->cursor_data, width, height, mask_size);
425 min_t(u32, max(fb->hot_y, 0), height),
426 width, height, vbox->cursor_data, data_size);
636 int height)
681 int clock = (width + 6) * (height + 6) * 60 / 10000;
686 edid[14] = height & 0xff;
687 edid[15] = height >> 8;
692 edid[59] = height & 0xff;
693 edid[61] = (height >> 4) & 0xf0;
719 preferred_height = vbox_connector->mode_hint.height ?
720 vbox_connector->mode_hint.height : 768;