Lines Matching defs:get
256 /* Would overrun if increment makes (put==get). */
306 * Otherwise, if we get multiple status interrupts
320 * Get input from the receive ring and pass it on.
327 int get, c, s;
333 /* Atomically get and clear flags. */
344 get = k->k_rbget;
345 while (get != k->k_rbput) {
346 ring_data = k->k_rbuf[get];
347 get = (get + 1) & KBD_RX_RING_MASK;
361 get = k->k_rbput; /* flush */
376 k->k_rbget = get;