HomeSort by: relevance | last modified time | path
    Searched defs:sec_dmablk (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/dev/podulebus/
sec.c 89 #define SEC_DMABLK 16384
337 sec_dmablk(struct sec_softc *sc, int blk) function in typeref:typename:void
343 KASSERT(blk * SEC_DMABLK < sc->sc_dmalen);
344 off = (blk % SEC_NBLKS) * SEC_DMABLK + sc->sc_dmaoff;
345 len = MIN(SEC_DMABLK, sc->sc_dmalen - (blk * SEC_DMABLK));
366 KASSERT(blk * SEC_DMABLK < sc->sc_dmalen);
368 off = (blk % SEC_NBLKS) * SEC_DMABLK + sc->sc_dmaoff;
369 len = MIN(SEC_DMABLK, sc->sc_dmalen - (blk * SEC_DMABLK));
    [all...]
sec.c 89 #define SEC_DMABLK 16384
337 sec_dmablk(struct sec_softc *sc, int blk) function in typeref:typename:void
343 KASSERT(blk * SEC_DMABLK < sc->sc_dmalen);
344 off = (blk % SEC_NBLKS) * SEC_DMABLK + sc->sc_dmaoff;
345 len = MIN(SEC_DMABLK, sc->sc_dmalen - (blk * SEC_DMABLK));
366 KASSERT(blk * SEC_DMABLK < sc->sc_dmalen);
368 off = (blk % SEC_NBLKS) * SEC_DMABLK + sc->sc_dmaoff;
369 len = MIN(SEC_DMABLK, sc->sc_dmalen - (blk * SEC_DMABLK));
    [all...]

Completed in 25 milliseconds