cell 178 dev/ic/pcdisplay_subr.c pcdisplay_getchar(id, row, col, cell)
cell 181 dev/ic/pcdisplay_subr.c struct wsdisplay_charcell *cell;
cell 198 dev/ic/pcdisplay_subr.c cell->uc = data & 0xff;
cell 199 dev/ic/pcdisplay_subr.c cell->attr = data >> 8;
cell 1319 dev/ic/vga.c vga_getchar(c, row, col, cell)
cell 1322 dev/ic/vga.c struct wsdisplay_charcell *cell;
cell 1326 dev/ic/vga.c return (pcdisplay_getchar(vc->active, row, col, cell));
cell 937 dev/pcmcia/cfxga.c struct wsdisplay_charcell *cell = scr->scr_mem;
cell 951 dev/pcmcia/cfxga.c if (cell->uc == 0 || cell->uc == ' ') {
cell 952 dev/pcmcia/cfxga.c ri->ri_ops.unpack_attr(ri, cell->attr,
cell 957 dev/pcmcia/cfxga.c rc = cfxga_expand_char(scr, cell->uc,
cell 958 dev/pcmcia/cfxga.c x, y, cell->attr);
cell 960 dev/pcmcia/cfxga.c cell++;
cell 801 dev/usb/ueagle.c ueagle_push_cell(struct ueagle_softc *sc, uint8_t *cell)
cell 813 dev/usb/ueagle.c ATM_CH_GETVPI(cell) != vcc->vpi ||
cell 814 dev/usb/ueagle.c ATM_CH_GETVCI(cell) != vcc->vci) {
cell 820 dev/usb/ueagle.c if (ATM_CH_ISLASTCELL(cell)) {
cell 854 dev/usb/ueagle.c memcpy(vcc->dst, cell + ATM_CELL_HEADER_SIZE, ATM_CELL_PAYLOAD_SIZE);
cell 857 dev/usb/ueagle.c if (!ATM_CH_ISLASTCELL(cell))
cell 866 dev/usb/ueagle.c pdulen = AAL5_TR_GETPDULEN(cell);
cell 2417 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2425 dev/wscons/wsdisplay.c GETCHAR(pos, &cell);
cell 2427 dev/wscons/wsdisplay.c (*dconf->emulops->unpack_attr)(dconf->emulcookie, cell.attr, &fg,
cell 2446 dev/wscons/wsdisplay.c cell.attr = attr;
cell 2447 dev/wscons/wsdisplay.c PUTCHAR(pos, cell.uc, cell.attr);
cell 2474 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2480 dev/wscons/wsdisplay.c while (GETCHAR(current, &cell) == 0 && cell.uc == ' ' &&
cell 2505 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2511 dev/wscons/wsdisplay.c while (GETCHAR(current, &cell) == 0 && cell.uc == ' ' &&
cell 2599 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2605 dev/wscons/wsdisplay.c GETCHAR(current, &cell);
cell 2606 dev/wscons/wsdisplay.c class = charClass[cell.uc & 0xff];
cell 2607 dev/wscons/wsdisplay.c while (GETCHAR(current, &cell) == 0 &&
cell 2608 dev/wscons/wsdisplay.c charClass[cell.uc & 0xff] == class && current <= limit) {
cell 2623 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2629 dev/wscons/wsdisplay.c GETCHAR(current, &cell);
cell 2630 dev/wscons/wsdisplay.c class = charClass[cell.uc & 0xff];
cell 2631 dev/wscons/wsdisplay.c while (GETCHAR(current, &cell) == 0 &&
cell 2632 dev/wscons/wsdisplay.c charClass[cell.uc & 0xff] == class && current >= limit) {
cell 2647 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2651 dev/wscons/wsdisplay.c if (GETCHAR(first, &cell) != 0)
cell 2653 dev/wscons/wsdisplay.c first_class = charClass[cell.uc & 0xff];
cell 2654 dev/wscons/wsdisplay.c if (GETCHAR(second, &cell) != 0)
cell 2656 dev/wscons/wsdisplay.c second_class = charClass[cell.uc & 0xff];
cell 2709 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 2722 dev/wscons/wsdisplay.c if (GETCHAR(MOUSE, &cell) == 0 && IS_ALPHANUM(cell.uc)) {
cell 3125 dev/wscons/wsdisplay.c struct wsdisplay_charcell cell;
cell 3136 dev/wscons/wsdisplay.c if (GETCHAR(sel_cur, &cell) != 0)
cell 3138 dev/wscons/wsdisplay.c Copybuffer[current] = cell.uc;