HomeSort by: relevance | last modified time | path
    Searched defs:npress (Results 1 - 3 of 3) sorted by relevancy

  /src/sys/arch/zaurus/dev/
zkbd.c 390 int npress = 0, ncbuf = 0, c; local in function:zkbd_poll
487 sc->sc_rep[npress++] = 0xe0;
489 sc->sc_rep[npress++] = c & 0x7f;
517 sc->sc_nrep = npress;
518 if (npress != 0)
  /src/sys/dev/bluetooth/
btkbd.c 552 int npress = 0; local in function:btkbd_input
571 sc->sc_rep[npress++] = 0xe0;
573 sc->sc_rep[npress++] = c & 0x7f;
585 if (npress != 0) {
586 sc->sc_nrep = npress;
  /src/sys/dev/usb/
ukbd.c 854 int npress = 0; local in function:ukbd_decode
879 sc->sc_rep[npress++] = 0xe0;
880 sc->sc_rep[npress++] = c & 0x7f;
893 if (npress != 0) {
894 sc->sc_nrep = npress;

Completed in 13 milliseconds