Home
last modified time | relevance | path

Searched refs:src_width (Results 1 – 7 of 7) sorted by relevance

/qemu/hw/display/
H A Dframebuffer.c29 unsigned src_width) in framebuffer_update_memory_section() argument
31 hwaddr src_len = (hwaddr)rows * src_width; in framebuffer_update_memory_section()
60 int src_width, /* Length of source line, in bytes. */ in framebuffer_update_display() argument
98 addr += i * src_width; in framebuffer_update_display()
99 src += i * src_width; in framebuffer_update_display()
102 snap = memory_region_snapshot_and_clear_dirty(mem, addr, src_width * rows, in framebuffer_update_display()
105 dirty = memory_region_snapshot_get_dirty(mem, snap, addr, src_width); in framebuffer_update_display()
112 addr += src_width; in framebuffer_update_display()
113 src += src_width; in framebuffer_update_display()
H A Dnext-fb.c74 int src_width; in nextfb_update() local
79 src_width = s->cols / 4 + 8; in nextfb_update()
84 s->cols, src_width); in nextfb_update()
89 src_width, dest_width, 0, 1, nextfb_draw_line, in nextfb_update()
H A Dpl110.c218 int src_width; in pl110_update_display() local
268 src_width = s->cols; in pl110_update_display()
271 src_width >>= 3; in pl110_update_display()
274 src_width >>= 2; in pl110_update_display()
277 src_width >>= 1; in pl110_update_display()
284 src_width <<= 1; in pl110_update_display()
287 src_width <<= 2; in pl110_update_display()
295 s->rows, src_width); in pl110_update_display()
300 src_width, s->cols * 4, 0, in pl110_update_display()
H A Dframebuffer.h26 unsigned src_width);
56 int src_width,
H A Dbcm2835_fb.c158 int src_width = 0; in fb_update_display() local
166 src_width = bcm2835_fb_get_pitch(&s->config); in fb_update_display()
197 hwaddr base = s->config.base + xoff + (hwaddr)yoff * src_width; in fb_update_display()
200 s->config.yres, src_width); in fb_update_display()
205 src_width, dest_width, 0, s->invalidate, in fb_update_display()
/qemu/target/hexagon/idef-parser/
H A Dparser-helpers.c997 HexValue *src_width, in gen_extend_imm_width_op() argument
1012 assert(src_width->type == IMMEDIATE); in gen_extend_imm_width_op()
1015 need_guarding = (src_width->imm.type != VALUE); in gen_extend_imm_width_op()
1017 if (src_width->imm.type == VALUE && in gen_extend_imm_width_op()
1018 src_width->imm.value == 0) { in gen_extend_imm_width_op()
1036 OUT(c, locp, "if (", src_width, " != 0) {\n"); in gen_extend_imm_width_op()
1039 OUT(c, locp, "(", value, ", 0, ", src_width, ");\n"); in gen_extend_imm_width_op()
1056 OUT(c, locp, "if (", src_width, " != 0) {\n"); in gen_extend_imm_width_op()
1059 OUT(c, locp, "(", &res, ", ", value, ", 0, ", src_width, in gen_extend_imm_width_op()
1078 HexValue *src_width, in gen_extend_tcg_width_op() argument
[all …]
H A Dparser-helpers.h206 HexValue *src_width,