Lines Matching defs:bix
581 unsigned int bix, len;
587 bix = sc->sc_rb.rb_tdhead;
603 len = be_put(sc, bix, m);
608 txd[bix].xd_flags = QEC_XD_OWN | QEC_XD_SOP | QEC_XD_EOP |
613 if (++bix == QEC_XD_RING_MAXSIZE)
614 bix = 0;
619 sc->sc_rb.rb_tdhead = bix;
841 unsigned int bix, txflags;
860 bix = sc->sc_rb.rb_tdtail;
866 txflags = sc->sc_rb.rb_txd[bix].xd_flags;
873 if (++bix == QEC_XD_RING_MAXSIZE)
874 bix = 0;
879 sc->sc_rb.rb_tdtail = bix;
896 unsigned int bix, len;
899 bix = sc->sc_rb.rb_rdtail;
905 len = xd[bix].xd_flags;
910 be_read(sc, bix, len);
913 xd[(bix+nrbuf) % QEC_XD_RING_MAXSIZE].xd_flags =
916 if (++bix == QEC_XD_RING_MAXSIZE)
917 bix = 0;
920 sc->sc_rb.rb_rdtail = bix;