Searched refs:xpos (Results 1 - 7 of 7) sorted by relevance

/osnet-11/usr/src/grub/grub-0.97/docs/
H A Dkernel.c37 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)
H A Dkernel.c.texi37 static int xpos;
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/grub-0.97/stage2/
H A Dchar_io.c293 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...]
/osnet-11/usr/src/grub/grub2/grub-core/term/
H A Dterminfo.c227 return ((data->xpos << 8) | data->ypos);
247 if ((y == data->ypos) && (x == data->xpos - 1))
251 data->xpos = x;
264 data->xpos = data->ypos = 0;
352 if (data->xpos > 0)
353 data->xpos--;
362 data->xpos = 0;
366 if (data->xpos + c->estimated_width >= grub_term_width (term) + 1)
368 data->xpos = 0;
374 data->xpos
[all...]
/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/grub2/grub-core/normal/
H A Dcmdline.c206 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/lib/libexacct/common/
H A Dexacct_ops.c479 * buffer, using the provided xpos() function. EUP_NOALLOC is generally not
489 void *(*xpos)(ea_file_impl_t *),
575 buf = xpos(f);

Completed in 34 milliseconds