Home
last modified time | relevance | path

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

/external/syslinux/gpxe/src/hci/mucurses/widgets/
Deditbox.c68 signed int cursor_offset, underflow, overflow, first; in draw_editbox() local
72 cursor_offset = ( box->string.cursor - box->first ); in draw_editbox()
73 underflow = ( EDITBOX_MIN_CHARS - cursor_offset ); in draw_editbox()
74 overflow = ( cursor_offset - ( width - 1 ) ); in draw_editbox()
84 cursor_offset = ( box->string.cursor - first ); in draw_editbox()
102 wmove ( box->win, box->row, ( box->col + cursor_offset ) ); in draw_editbox()
/external/vixl/src/
Dcode-buffer-vixl.h58 ptrdiff_t cursor_offset = cursor_ - buffer_; in GetOffsetFrom() local
59 VIXL_ASSERT((offset >= 0) && (offset <= cursor_offset)); in GetOffsetFrom()
60 return cursor_offset - offset; in GetOffsetFrom()
Dcode-buffer-vixl.cc167 ptrdiff_t cursor_offset = GetCursorOffset(); in Grow() local
186 cursor_ = buffer_ + cursor_offset; in Grow()