Symbol: rdb
sys/dev/ic/rtw.c
1001
rtw_rxdesc_init(struct rtw_rxdesc_blk *rdb, struct rtw_rxsoft *rs,
sys/dev/ic/rtw.c
1004
int is_last = (idx == rdb->rdb_ndesc - 1);
sys/dev/ic/rtw.c
1006
struct rtw_rxdesc *rd = &rdb->rdb_desc[idx];
sys/dev/ic/rtw.c
1027
bus_dmamap_sync(rdb->rdb_dmat, rs->rs_dmamap, 0,
sys/dev/ic/rtw.c
1031
bus_dmamap_sync(rdb->rdb_dmat, rdb->rdb_dmamap,
sys/dev/ic/rtw.c
1037
rtw_rxdesc_init_all(struct rtw_rxdesc_blk *rdb, struct rtw_rxsoft *ctl,
sys/dev/ic/rtw.c
1043
for (i = 0; i < rdb->rdb_ndesc; i++) {
sys/dev/ic/rtw.c
1045
rtw_rxdesc_init(rdb, rs, i, kick);
sys/dev/ic/rtw.c
1090
struct rtw_rxdesc_blk *rdb;
sys/dev/ic/rtw.c
1096
rdb = &sc->sc_rxdesc_blk;
sys/dev/ic/rtw.c
1098
KASSERT(rdb->rdb_next < rdb->rdb_ndesc);
sys/dev/ic/rtw.c
1100
for (next = rdb->rdb_next; ; next = (next + 1) % rdb->rdb_ndesc) {
sys/dev/ic/rtw.c
1101
rtw_rxdescs_sync(rdb, next, 1,
sys/dev/ic/rtw.c
1103
rd = &rdb->rdb_desc[next];
sys/dev/ic/rtw.c
1123
rtw_rxdescs_sync(rdb, 0, 1,
sys/dev/ic/rtw.c
1125
rd = &rdb->rdb_desc[0];
sys/dev/ic/rtw.c
1131
next = rdb->rdb_ndesc - 1;
sys/dev/ic/rtw.c
1296
rtw_rxdesc_init(rdb, rs, next, 0);
sys/dev/ic/rtw.c
1299
rdb->rdb_next = next;
sys/dev/ic/rtw.c
1301
KASSERT(rdb->rdb_next < rdb->rdb_ndesc);
sys/dev/ic/rtw.c
1523
struct rtw_rxdesc_blk *rdb;
sys/dev/ic/rtw.c
1537
rdb = &sc->sc_rxdesc_blk;
sys/dev/ic/rtw.c
1540
rd = &rdb->rdb_desc[desc];
sys/dev/ic/rtw.c
1543
(desc >= rdb->rdb_ndesc) ? "UNUSED " : "",
sys/dev/ic/rtw.c
1587
struct rtw_rxdesc_blk *rdb;
sys/dev/ic/rtw.c
1594
rdb = &sc->sc_rxdesc_blk;
sys/dev/ic/rtw.c
1596
&rdb->rdb_ndesc, sc->sc_dev.dv_xname)) != 0 &&
sys/dev/ic/rtw.c
1597
rdb->rdb_ndesc == 0) {
sys/dev/ic/rtw.c
1603
rdb = &sc->sc_rxdesc_blk;
sys/dev/ic/rtw.c
1604
rtw_rxdescs_sync(rdb, 0, rdb->rdb_ndesc,
sys/dev/ic/rtw.c
1606
rtw_rxdesc_init_all(rdb, sc->sc_rxsoft, 1);
sys/dev/ic/rtw.c
1607
rdb->rdb_next = 0;
sys/dev/ic/rtw.c
1659
struct rtw_rxdesc_blk *rdb;
sys/dev/ic/rtw.c
1664
rdb = &sc->sc_rxdesc_blk;
sys/dev/ic/rtw.c
1665
if (rdb->rdb_next != next) {
sys/dev/ic/rtw.c
1668
rdb->rdb_next, next));
sys/dev/ic/rtw.c
1669
rdb->rdb_next = MIN(next, rdb->rdb_ndesc - 1);
sys/dev/ic/rtw.c
879
rtw_rxdescs_sync(struct rtw_rxdesc_blk *rdb, int desc0, int nsync, int ops)
sys/dev/ic/rtw.c
881
KASSERT(nsync <= rdb->rdb_ndesc);
sys/dev/ic/rtw.c
883
if (desc0 + nsync > rdb->rdb_ndesc) {
sys/dev/ic/rtw.c
884
bus_dmamap_sync(rdb->rdb_dmat, rdb->rdb_dmamap,
sys/dev/ic/rtw.c
886
sizeof(struct rtw_rxdesc) * (rdb->rdb_ndesc - desc0), ops);
sys/dev/ic/rtw.c
887
nsync -= (rdb->rdb_ndesc - desc0);
sys/dev/ic/rtw.c
891
KASSERT(desc0 < rdb->rdb_ndesc);
sys/dev/ic/rtw.c
892
KASSERT(nsync <= rdb->rdb_ndesc);
sys/dev/ic/rtw.c
893
KASSERT(desc0 + nsync <= rdb->rdb_ndesc);
sys/dev/ic/rtw.c
896
bus_dmamap_sync(rdb->rdb_dmat, rdb->rdb_dmamap,
sys/dev/x86emu/x86emu_util.c
198
emu->emu_rdb = rdb;
usr.bin/openssl/ocsp.c
1101
free_index(rdb);
usr.bin/openssl/ocsp.c
803
CA_DB *rdb = NULL;
usr.bin/openssl/ocsp.c
870
if (cfg.rsignfile && !rdb) {
usr.bin/openssl/ocsp.c
965
if (cfg.ridx_filename && !rdb) {
usr.bin/openssl/ocsp.c
966
rdb = load_index(cfg.ridx_filename, NULL);
usr.bin/openssl/ocsp.c
967
if (!rdb)
usr.bin/openssl/ocsp.c
969
if (!index_index(rdb))
usr.bin/openssl/ocsp.c
972
if (rdb) {
usr.bin/openssl/ocsp.c
973
i = make_ocsp_response(&resp, cfg.req, rdb, rca_cert,