Lines Matching defs:slot
59 uint64_t slot;
63 slot = brp->rf_next;
64 brp->rf_next = NEXT(slot, brp->desc.nslots);
65 bge_mbx_put(bgep, brp->chip_mbx_reg, slot);
287 uint64_t slot;
316 slot = rrp->rx_next;
318 while ((slot != *rrp->prod_index_p) && /* Note: volatile */
320 if ((mp = bge_receive_packet(bgep, &hw_rbd_p[slot], rrp))
326 rrp->rx_next = slot = NEXT(slot, rrp->desc.nslots);
356 uint64_t slot;
387 slot = rrp->rx_next;
390 while ((slot != *rrp->prod_index_p) && (sz <= bytes_to_pickup)) {
391 if ((mp = bge_receive_packet(bgep, &hw_rbd_p[slot], rrp))
397 rrp->rx_next = slot = NEXT(slot, rrp->desc.nslots);