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

  /src/games/warp/
term.c 560 if (!typeahead && nextin==nextout) /* cancel only keyboard stuff */
581 nextout = nextin; /* empty circlebuf */
592 if (nextout != nextin) {
622 assert (nextin == nextout);
623 howmany = read(devtty,circlebuf+nextin,metakey?1:PUSHSIZE-nextin);
626 if (circlebuf[nextin] & 0200) {
627 circlebuf[nextin] &= 0177;
632 for (i = howmany+nextin-1; i >= nextin; i--
    [all...]
term.h 102 EXT int nextin INIT(0);
108 # define input_pending() (nextin!=nextout || \
127 # define input_pending() (nextin!=nextout || circfill())
136 # define input_pending() (nextin!=nextout)
  /src/sys/dev/marvell/
if_gfe.c 1216 int nextin; local in function:gfe_tx_enqueue
1225 nextin = txq->txq_fi + 1;
1226 if (nextin == GE_TXDESC_MAX)
1227 nextin = 0;
1228 GE_TXDPOSTSYNC(sc, txq, nextin);
1229 if (gt32toh(txq->txq_descs[nextin].ed_cmdsts) & TX_CMD_O) {
1231 GE_TXDPRESYNC(sc, txq, nextin);
1376 int nextin; local in function:gfe_tx_done
1392 nextin = txq->txq_fi + 1;
1393 if (nextin == GE_TXDESC_MAX
    [all...]

Completed in 13 milliseconds