Searched refs:scan (Results 1 - 4 of 4) sorted by relevance

/broadcom-cfe-1.4.2/cfe/pccons/
H A Dkbd_subr.h7 * characters. The scan codes come from a PC-style
79 void kbd_doscan(keystate_t *ks,uint8_t scan);
H A Dkbd_subr.c7 * characters. The scan codes come from a PC-style
306 * KBD_DOSCAN(ks,scan)
308 * Process a scan code from the keyboard.
312 * scan - scan code from the keyboard
318 void kbd_doscan(keystate_t *ks,uint8_t scan) argument
324 breakflg = (scan & FLG_BREAKBIT);
325 scan &= ~FLG_BREAKBIT;
326 code = &scantable[scan];
/broadcom-cfe-1.4.2/cfe/zlib/
H A Ddeflate.c731 register Bytef *scan = s->window + s->strstart; /* current string */ local
749 register ush scan_start = *(ushf*)scan;
750 register ush scan_end = *(ushf*)(scan+best_len-1);
753 register Byte scan_end1 = scan[best_len-1];
754 register Byte scan_end = scan[best_len];
787 /* It is not necessary to compare scan[2] and match[2] since they are
796 Assert(scan[2] == match[2], "scan[2]?");
797 scan++, match++;
799 } while (*(ushf*)(scan
872 register Bytef *scan = s->window + s->strstart; /* current string */ local
[all...]
/broadcom-cfe-1.4.2/cfe/usb/
H A Dusbhid.c342 * usbhid_kbd_scan1(uhid,scan,breakflg)
344 * Handle a single keyboard event. Using the scan code, look up
350 * scan - scan code from keyboard report
357 static void usbhid_kbd_scan1(usbhid_softc_t *uhid,uint8_t scan,int breakflg) argument
363 * Check scan code for reality.
366 if (scan >= usbhid_scantablesize) return;
367 code = &usbhid_scantable[scan];
572 * This routine is called when the bus scan stuff finds a HID

Completed in 43 milliseconds