Lines Matching full:width
128 int width;
229 int posx, int posy, int width, int height, uint32_t color)
241 for (x = 0; x < width; x++) {
247 for (x = 0; x < width; x++) {
253 for (x = 0; x < width; x++) {
509 last_width = s->width;
510 s->width = s->g_width / FONT_WIDTH;
514 if (s->width < w1)
515 w1 = s->width;
517 cells = qemu_malloc(s->width * s->total_height * sizeof(TextCell));
519 c = &cells[y * s->width];
526 for(x = w1; x < s->width; x++) {
572 c = &s->cells[y1 * s->width + x];
593 if (x >= s->width) {
594 x = s->width - 1;
601 width + x];
624 s->text_x[1] = s->width - 1;
634 c = s->cells + y1 * s->width;
635 for(x = 0; x < s->width; x++) {
699 c = &s->cells[y1 * s->width];
700 for(x = 0; x < s->width; x++) {
709 s->text_x[1] = s->width - 1;
715 s->width * FONT_WIDTH,
718 s->width * FONT_WIDTH, FONT_HEIGHT,
722 s->update_x1 = s->width * FONT_WIDTH;
828 TextCell *c = &s->cells[y1 * s->width + x];
855 if (s->x + (8 - (s->x % 8)) > s->width) {
875 if (s->x >= s->width) {
881 c = &s->cells[y1 * s->width + s->x];
941 if (s->x >= s->width) {
942 s->x = s->width - 1;
979 for (x = 0; x < s->width; x++) {
990 for (x = 0; x < s->width; x++) {
1001 for (x = 0; x < s->width; x++) {
1011 for(x = s->x; x < s->width; x++) {
1023 for(x = 0; x < s->width; x++) {
1072 s->ds->surface->width = s->width;
1085 s->update_x0 = s->width * FONT_WIDTH;
1206 src = (s->y_base + s->text_y[0]) * s->width;
1207 chardata += s->text_y[0] * s->width;
1209 for (j = 0; j < s->width; j ++, src ++)
1216 s->text_x[0] = s->width;
1325 unsigned width;
1353 width = ds_get_width(s->ds);
1356 width = strtoul(p, (char **)&p, 10);
1359 width *= FONT_WIDTH;
1370 s->g_width = width;
1423 void qemu_console_resize(DisplayState *ds, int width, int height)
1428 s->g_width = width;
1431 ds->surface = qemu_resize_displaysurface(ds, width, height);
1554 DisplaySurface* defaultallocator_create_displaysurface(int width, int height)
1558 surface->width = width;
1560 surface->linesize = width * 4;
1573 int width, int height)
1575 surface->width = width;
1577 surface->linesize = width * 4;
1592 DisplaySurface* qemu_create_displaysurface_from(int width, int height, int bpp,
1597 surface->width = width;