Searched defs:cursor_offset (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Devices/PC/ipxe/src/hci/mucurses/widgets/
H A Deditbox.c67 signed int cursor_offset, underflow, overflow, first; local
71 cursor_offset = ( box->string.cursor - box->first );
72 underflow = ( EDITBOX_MIN_CHARS - cursor_offset );
73 overflow = ( cursor_offset - ( width - 1 ) );
83 cursor_offset = ( box->string.cursor - first );
101 wmove ( box->win, box->row, ( box->col + cursor_offset ) );
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.cpp1707 uint32_t offset, fgcol, bgcol, v, cursor_offset; local
1791 cursor_offset = ((pThis->cr[0x0e] << 8) | pThis->cr[0x0f]) - pThis->start_addr;
1792 if (cursor_offset != pThis->cursor_offset ||
1797 if (pThis->cursor_offset < CH_ATTR_SIZE)
1798 pThis->last_ch_attr[pThis->cursor_offset] = ~0;
1799 if (cursor_offset < CH_ATTR_SIZE)
1800 pThis->last_ch_attr[cursor_offset] = ~0;
1801 pThis->cursor_offset = cursor_offset;
[all...]

Completed in 66 milliseconds