Searched refs:ycur (Results 1 - 3 of 3) sorted by path

/u-boot/drivers/video/
H A Dconsole_truetype.c313 pos->ypos = vc_priv->ycur;
463 if (pos->ypos == vc_priv->ycur)
474 vc_priv->ycur = pos->ypos;
818 store.cur.ypos = vc_priv->ycur;
836 vc_priv->ycur = store.cur.ypos;
873 y = vc_priv->ycur;
H A Dvidconsole-uclass.c78 priv->ycur -= priv->y_charsize;
79 if (priv->ycur < 0)
80 priv->ycur = 0;
95 priv->ycur += priv->y_charsize;
98 if ((priv->ycur + priv->y_charsize) / priv->y_charsize > priv->rows) {
103 priv->ycur -= rows * priv->y_charsize;
128 priv->ycur = y;
164 *row = priv->ycur / priv->y_charsize;
313 priv->ycur = 0;
442 ret = vidconsole_putc_xy(dev, priv->xcur_frac, priv->ycur, c
[all...]
/u-boot/include/
H A Dvideo_console.h32 * @ycur: Current Y position in pixels (0=top)
51 int ycur; member in struct:vidconsole_priv
184 * character and update the cursor position (xcur_frac, ycur) to the

Completed in 120 milliseconds