Searched defs:xpos (Results 1 - 4 of 4) sorted by relevance
/osnet-11/usr/src/grub/grub2/include/grub/ |
H A D | terminfo.h | 55 unsigned int xpos, ypos; member in struct:grub_terminfo_output_state
|
/osnet-11/usr/src/grub/grub-0.97/docs/ |
H A D | kernel.c | 37 static int xpos; variable 166 xpos = 0; 223 xpos = 0; 230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF; 231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE; 233 xpos++; 234 if (xpos >= COLUMNS)
|
/osnet-11/usr/src/grub/grub2/grub-core/normal/ |
H A D | cmdline.c | 206 unsigned xpos, ypos, ystart, width, height; member in struct:cmdline_term 238 cl_term->xpos = (plen + lpos) % (cl_term->width - 1); 240 grub_term_gotoxy (cl_term->term, cl_term->xpos, cl_term->ypos); 260 cl_term->xpos++; 261 if (cl_term->xpos >= cl_term->width - 1) 263 cl_term->xpos = 0; 335 cl_term_cur->xpos = plen;
|
/osnet-11/usr/src/grub/grub-0.97/stage2/ |
H A D | char_io.c | 293 int xpos, lpos, c, section; local 325 else if (xpos - count < 1) 329 xpos -= count; 339 gotoxy (xpos, getxy () & 0xFF); 349 if (xpos + count >= CMDLINE_WIDTH) 353 xpos += count; 368 gotoxy (xpos, getxy () & 0xFF); 378 int pos = xpos; 417 offset = xpos - plen; 420 xpos [all...] |
Completed in 36 milliseconds