Lines Matching defs:height
40 int width, height, bpp, pitch;
46 height = vbox_crtc->height ? vbox_crtc->height : 480;
62 vbox_write_ioport(VBE_DISPI_INDEX_YRES, height);
79 pitch, width, height, bpp, flags);
128 u16 width = 0, height = 0;
154 vbox->input_mapping_height = fb1->height;
166 height = max_t(u16, height, vbox_crtc->y_hint +
167 vbox_connector->mode_hint.height);
172 vbox->input_mapping_height = height;
190 vbox_crtc->height = crtc->state->mode.vdisplay;
343 u32 height = new_state->crtc_h;
363 if (width > VBOX_MAX_CURSOR_WIDTH || height > VBOX_MAX_CURSOR_HEIGHT ||
364 width == 0 || height == 0)
375 static void copy_cursor_image(u8 *src, u8 *dst, u32 width, u32 height,
381 memcpy(dst + mask_size, src, width * height * 4);
382 for (i = 0; i < height; ++i)
400 u32 height = new_state->crtc_h;
424 mask_size = ((width + 7) / 8 * height + 3) & ~3;
425 data_size = width * height * 4 + mask_size;
427 copy_cursor_image(src, vbox->cursor_data, width, height, mask_size);
433 min_t(u32, max(fb->hot_y, 0), height),
434 width, height, vbox->cursor_data, data_size);
642 int height)
687 int clock = (width + 6) * (height + 6) * 60 / 10000;
692 edid[14] = height & 0xff;
693 edid[15] = height >> 8;
698 edid[59] = height & 0xff;
699 edid[61] = (height >> 4) & 0xf0;
725 preferred_height = vbox_connector->mode_hint.height ?
726 vbox_connector->mode_hint.height : 768;