col 89 bsp/drv/arm/gba/lcd.c lcd_cursor(void *aux, int row, int col) col 96 bsp/drv/arm/gba/lcd.c lcd_putc(void *aux, int row, int col, int ch) col 100 bsp/drv/arm/gba/lcd.c sc->vram[row * VSCR_COLS + col] = ch; col 136 bsp/drv/arm/gba/lcd.c lcd_get_cursor(void *aux, int *col, int *row) col 139 bsp/drv/arm/gba/lcd.c *col = 0; col 146 bsp/drv/arm/gba/lcd.c int i, row, col, bit, val = 0; col 151 bsp/drv/arm/gba/lcd.c for (col = 7; col >= 0; col--) { col 152 bsp/drv/arm/gba/lcd.c bit = (font_bitmap[i][row] & (1 << col)) ? 2 : 1; col 153 bsp/drv/arm/gba/lcd.c if (col % 2) col 156 bsp/drv/arm/gba/lcd.c tile[(i * 32) + (row * 4) + ((7 - col) / 2)] = col 390 bsp/drv/arm/gba/swkbd.c int i, j, row, col; col 414 bsp/drv/arm/gba/swkbd.c for (col = 13; col < 29; col++) { col 415 bsp/drv/arm/gba/swkbd.c map1[row * 32 + col] = (uint16_t)i; col 416 bsp/drv/arm/gba/swkbd.c map2[row * 32 + col] = (uint16_t)(i + 127); col 404 bsp/drv/dev/base/tty.c int i, col; col 425 bsp/drv/dev/base/tty.c col = tp->t_column; col 428 bsp/drv/dev/base/tty.c if (col > 0) col 429 bsp/drv/dev/base/tty.c --col; col 432 bsp/drv/dev/base/tty.c col = (col + 8) & ~7; col 435 bsp/drv/dev/base/tty.c col = 0; col 438 bsp/drv/dev/base/tty.c col = 0; col 442 bsp/drv/dev/base/tty.c ++col; col 445 bsp/drv/dev/base/tty.c tp->t_column = col; col 60 bsp/drv/dev/base/wscons.c int col; /* current col */ col 145 bsp/drv/dev/base/wscons.c vops->cursor(sc->vid_aux, sc->row, sc->col); col 162 bsp/drv/dev/base/wscons.c sc->col = 0; col 180 bsp/drv/dev/base/wscons.c sc->col = 0; col 256 bsp/drv/dev/base/wscons.c esc->saved_col = sc->col; col 258 bsp/drv/dev/base/wscons.c printf("TTY: save %d %d\n", sc->col, sc->row); col 261 bsp/drv/dev/base/wscons.c sc->col = esc->saved_col; col 263 bsp/drv/dev/base/wscons.c printf("TTY: restore %d %d\n", sc->col, sc->row); col 285 bsp/drv/dev/base/wscons.c sc->col += esc->arg1; col 286 bsp/drv/dev/base/wscons.c if (sc->col >= sc->ncols) col 287 bsp/drv/dev/base/wscons.c sc->col = sc->ncols - 1; col 291 bsp/drv/dev/base/wscons.c sc->col -= esc->arg1; col 292 bsp/drv/dev/base/wscons.c if (sc->col < 0) col 293 bsp/drv/dev/base/wscons.c sc->col = 0; col 340 bsp/drv/dev/base/wscons.c sc->col = esc->arg2; col 343 bsp/drv/dev/base/wscons.c if (sc->col >= sc->ncols) col 344 bsp/drv/dev/base/wscons.c sc->col = sc->ncols - 1; col 376 bsp/drv/dev/base/wscons.c sc->col = 0; col 379 bsp/drv/dev/base/wscons.c if (sc->col == 0) col 381 bsp/drv/dev/base/wscons.c sc->col--; col 385 bsp/drv/dev/base/wscons.c vops->putc(sc->vid_aux, sc->row, sc->col, c); col 387 bsp/drv/dev/base/wscons.c sc->col++; col 388 bsp/drv/dev/base/wscons.c if (sc->col >= sc->ncols) { col 389 bsp/drv/dev/base/wscons.c sc->col = 0; col 457 bsp/drv/dev/base/wscons.c ops->get_cursor(aux, &sc->col, &sc->row); col 137 bsp/drv/dev/video/vga.c vga_cursor(void *aux, int row, int col) col 142 bsp/drv/dev/video/vga.c pos = row * sc->cols + col; col 151 bsp/drv/dev/video/vga.c vga_putc(void *aux, int row, int col, int ch) col 155 bsp/drv/dev/video/vga.c sc->vram[row * sc->cols + col] = ch | (sc->attr << 8); col 191 bsp/drv/dev/video/vga.c vga_get_cursor(void *aux, int *col, int *row) col 201 bsp/drv/dev/video/vga.c *col = (int)offset % sc->cols; col 39 bsp/drv/include/wscons.h void (*cursor) (void *aux, int row, int col); col 40 bsp/drv/include/wscons.h void (*putc) (void *aux, int row, int col, int ch); col 44 bsp/drv/include/wscons.h void (*get_cursor)(void *aux, int *col, int *row); col 118 bsp/hal/arm/gba/diag.c int i, row, col, bit, val = 0; col 123 bsp/hal/arm/gba/diag.c for (col = 7; col >= 0; col--) { col 125 bsp/hal/arm/gba/diag.c (1 << col)) ? 2 : 1; col 126 bsp/hal/arm/gba/diag.c if (col % 2) col 130 bsp/hal/arm/gba/diag.c (row * 4) + ((7 - col) / 2)] = col 58 usr/bin/cmdbox/main.c int maxcol, col = 0; col 77 usr/bin/cmdbox/main.c col += fprintf(stderr, "%s%s", ((col == 0) ? " " : ", "), col 80 usr/bin/cmdbox/main.c if (col > maxcol && entry->cmd != NULL) { col 82 usr/bin/cmdbox/main.c col = 0; col 92 usr/bin/cmdbox/main.c col += fprintf(stderr, "%s%s", ((col == 0) ? " " : ", "), col 95 usr/bin/cmdbox/main.c if (col > maxcol && entry->cmd != NULL) { col 97 usr/bin/cmdbox/main.c col = 0;