Home
last modified time | relevance | path

Searched refs:hscroll (Results 1 – 2 of 2) sorted by relevance

/linux-2.4.37.9/scripts/lxdialog/
Dtextbox.c30 static int hscroll = 0, fd, file_size, bytes_read; variable
287 if (hscroll <= 0) in dialog_textbox()
291 hscroll = 0; in dialog_textbox()
293 hscroll--; in dialog_textbox()
303 if (hscroll >= MAX_LEN) in dialog_textbox()
305 hscroll++; in dialog_textbox()
466 line += MIN (strlen (line), hscroll); /* Scroll horizontally */ in print_line()
/linux-2.4.37.9/drivers/video/
Damifb.c969 #define hscroll2hw(hscroll) \ argument
970 (((hscroll)<<12 & 0x3000) | ((hscroll)<<8 & 0xc300) | \
971 ((hscroll)<<4 & 0x0c00) | ((hscroll)<<2 & 0x00f0) | ((hscroll)>>2 & 0x000f))