Searched refs:COLS (Results 1 - 25 of 34) sorted by relevance

12

/external/syslinux/gpxe/src/arch/i386/core/
H A Dvideo_subr.c52 memcpy(vidmem, vidmem + COLS * 2, (LINES - 1) * COLS * 2);
53 for (i = (LINES - 1) * COLS * 2; i < LINES * COLS * 2; i += 2)
77 vidmem[((video_col + (video_line *COLS)) * 2)] = byte;
78 vidmem[((video_col + (video_line *COLS)) * 2) +1] = VGA_ATTR_CLR_WHT;
84 if (video_col >= COLS) {
93 write_crtc((video_col + (video_line *COLS)) >> 8, CRTC_CURSOR_HI);
94 write_crtc((video_col + (video_line *COLS)) & 0x0ff, CRTC_CURSOR_LO);
/external/e2fsprogs/ext2ed/
H A Dwin.c46 wmove (title_win,TITLE_WIN_LINES/2,(COLS-strlen (title_string))/2);
57 show_pad_info.display_cols=COLS;
76 title_win=newwin (TITLE_WIN_LINES,COLS,0,0);
77 show_win=newwin (SHOW_WIN_LINES,COLS,TITLE_WIN_LINES,0);
79 mt_win1=newwin (1,COLS,TITLE_WIN_LINES+SHOW_WIN_LINES,0);
80 mt_win2=newwin (1,COLS,LINES-COMMAND_WIN_LINES-1,0);
81 command_win=newwin (COMMAND_WIN_LINES,COLS,LINES-COMMAND_WIN_LINES,0);
115 wmove (show_win,2,COLS-18);
118 wmove (show_win,2,COLS-18);
204 if ((ws.ws_row != LINES) || (ws.ws_col != COLS)) {
[all...]
H A Dext2ed.h64 #define SHOW_PAD_COLS (COLS > 140 ? COLS : 140)
H A Ddir_com.c464 if (dir_entry_ptr->name_len > (COLS - 55) && COLS > 55)
465 temp [COLS-55]=0;
/external/python/cpython2/Demo/curses/
H A Dncurses.py76 for x in range(0, curses.COLS):
81 curses.COLS // 8 + 1,
88 curses.COLS // 7,
90 curses.COLS // 10)
95 curses.COLS // 10,
97 curses.COLS // 9)
102 curses.COLS // 8,
104 curses.COLS // 3)
109 curses.COLS // 8,
111 curses.COLS //
[all...]
H A Drain.py42 c = curses.COLS - 4
H A Dtclock.py82 cx = (curses.COLS - 1) // 2
/external/syslinux/gpxe/src/hci/mucurses/
H A Dwininit.c22 stdscr->width = COLS;
H A Dwindows.c103 ( ( (unsigned)x + win->width ) > COLS ) )
H A Dslk.c274 available_width = COLS - ( ( MIN_SPACE_SIZE * nmaj ) + nmin );
331 if ( pos_x < COLS )
/external/clang/test/SemaCXX/
H A Dcxx11-call-to-deleted-constructor.cpp10 template <class VT, unsigned int ROWS = 0, unsigned int COLS = 0>
/external/llvm/utils/lit/lit/
H A DProgressBar.py44 they will be stored in the `COLS` and `LINES` attributes.
71 COLS = None #: Width of the terminal (None for unknown) variable in class:TerminalController
110 self.COLS = curses.tigetnum('cols')
231 if self.term.COLS:
232 self.width = self.term.COLS
/external/swiftshader/third_party/LLVM/utils/lit/lit/
H A DProgressBar.py40 they will be stored in the `COLS` and `LINES` attributes.
67 COLS = None #: Width of the terminal (None for unknown) variable in class:TerminalController
106 self.COLS = curses.tigetnum('cols')
219 if self.term.COLS:
220 self.width = self.term.COLS
/external/gptfdisk/
H A Dgptcurses.cc326 move(2, (COLS - 29) / 2);
531 move(0, (COLS - 22) / 2);
612 numPerLine = (COLS - 8) / 12;
633 move(LINES - 1, (COLS - optionDesc.length()) / 2);
745 move(0, (COLS - title.length()) / 2);
747 move(2, (COLS - drive.length()) / 2);
749 move(3, (COLS - size.str().length()) / 2);
755 if (((LINES - RESERVED_TOP - RESERVED_BOTTOM) < 2) || (COLS < 80)) {
790 move(LINES - 2, (COLS - 29) / 2);
801 move(LINES - 2, (COLS
[all...]
/external/eigen/Eigen/src/Core/util/
H A DStaticAssert.h157 #define EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(TYPE, ROWS, COLS) \
158 EIGEN_STATIC_ASSERT(TYPE::RowsAtCompileTime==ROWS && TYPE::ColsAtCompileTime==COLS, \
/external/toybox/kconfig/lxdialog/
H A Dyesno.c54 x = (COLS - width) / 2;
H A Dinputbox.c64 x = (COLS - width) / 2;
H A Dutil.c254 attr_clear(stdscr, LINES, COLS, dlg.screen.atr);
262 for (i = 1; i < COLS - 1; i++)
H A Dchecklist.c137 x = (COLS - width) / 2;
H A Dtextbox.c86 x = (COLS - width) / 2;
/external/syslinux/gpxe/src/arch/i386/include/
H A Dvga.h27 #define COLS 80 macro
/external/syslinux/gpxe/src/hci/tui/
H A Dsettings_ui.c238 char buf[COLS];
242 mvprintw ( row, ( ( COLS - len ) / 2 ), "%s", buf );
/external/syslinux/gpxe/src/usr/
H A Dpxemenu.c192 char buf[COLS+1];
/external/python/cpython2/Lib/test/
H A Dtest_curses.py314 lines, cols = curses.LINES, curses.COLS
320 self.assertEqual(curses.COLS, new_cols)
/external/python/cpython3/Lib/test/
H A Dtest_curses.py319 lines, cols = curses.LINES, curses.COLS
325 self.assertEqual(curses.COLS, new_cols)
409 # this doesn't actually test that LINES and COLS are updated,

Completed in 749 milliseconds

12