Searched defs:ypos (Results 1 - 3 of 3) sorted by relevance

/osnet-11/usr/src/grub/grub2/include/grub/
H A Dterminfo.h55 unsigned int xpos, ypos; member in struct:grub_terminfo_output_state
/osnet-11/usr/src/grub/grub-0.97/docs/
H A Dkernel.c39 static int ypos; variable
167 ypos = 0;
224 ypos++;
225 if (ypos >= LINES)
226 ypos = 0;
230 *(video + (xpos + ypos * COLUMNS) * 2) = c & 0xFF;
231 *(video + (xpos + ypos * COLUMNS) * 2 + 1) = ATTRIBUTE;
/osnet-11/usr/src/grub/grub2/grub-core/normal/
H A Dcmdline.c206 unsigned xpos, ypos, ystart, width, height; member in struct:cmdline_term
239 cl_term->ypos = cl_term->ystart + (plen + lpos) / (cl_term->width - 1);
240 grub_term_gotoxy (cl_term->term, cl_term->xpos, cl_term->ypos);
264 if (cl_term->ypos >= (unsigned) (cl_term->height - 1))
267 cl_term->ypos++;
336 cl_term_cur->ypos = (grub_term_getxy (cl_term_cur->term) & 0xFF);
337 cl_term_cur->ystart = cl_term_cur->ypos;

Completed in 33 milliseconds