Home
last modified time | relevance | path

Searched refs:cursor_offset (Results 1 – 5 of 5) sorted by relevance

/openbmc/openbmc/poky/bitbake/lib/bb/ui/
H A Dtaskexp_ncurses.py135 nbox_ojb.cursor_offset,
302 self.cursor_offset = 0 # Frame centric offset
333 self.cursor_offset = 0 # Frame centric offset
403 self.cursor_offset = 0
430 …self.screen.addstr(self.base_y+1+self.cursor_offset,self.base_x+1,">", curses.color_pair(CURSES_HI…
431 …self.screen.addstr(self.base_y+1+self.cursor_offset,self.base_x+2,str_ctl % task, curses.color_pai…
433 self.screen.addstr(self.base_y+1+self.cursor_offset,self.base_x+1," ")
434 … self.screen.addstr(self.base_y+1+self.cursor_offset,self.base_x+2,str_ctl % task, task_font)
442 self.cursor_offset += 1
443 if self.cursor_offset > (self.inside_height):
[all …]
/openbmc/qemu/hw/display/
H A Dvga.c1199 uint32_t offset, fgcol, bgcol, v, cursor_offset; in vga_draw_text() local
1268 cursor_offset = ((s->cr[VGA_CRTC_CURSOR_HI] << 8) | in vga_draw_text()
1270 if (cursor_offset != s->cursor_offset || in vga_draw_text()
1275 if (s->cursor_offset < CH_ATTR_SIZE) in vga_draw_text()
1276 s->last_ch_attr[s->cursor_offset] = -1; in vga_draw_text()
1277 if (cursor_offset < CH_ATTR_SIZE) in vga_draw_text()
1278 s->last_ch_attr[cursor_offset] = -1; in vga_draw_text()
1279 s->cursor_offset = cursor_offset; in vga_draw_text()
1283 cursor_ptr = s->vram_ptr + (s->params.start_addr + cursor_offset) * 4; in vga_draw_text()
1875 s->cursor_offset = 0; in vga_common_reset()
[all …]
H A Dati_int.h96 uint32_t cursor_offset; member
H A Dvga_int.h133 uint32_t cursor_offset; member
H A Dati.c180 s->cursor_offset != s->regs.cur_offset - (s->regs.cur_hv_offs >> 16) - in ati_cursor_invalidate()
186 s->cursor_offset = s->regs.cur_offset - (s->regs.cur_hv_offs >> 16) - in ati_cursor_invalidate()
209 srcoff = s->cursor_offset + (scr_y - vga->hw_cursor_y) * 16; in ati_cursor_draw_line()