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

  /src/lib/librefuse/refuse/
v26.h 84 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v26
v28.h 84 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v28
v29.h 84 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v29
v30.h 92 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v30
v34.h 80 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v34
v35.h 80 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v35
v38.h 80 int (*bmap) (const char *, size_t , uint64_t *); member in struct:fuse_operations_v38
  /src/sys/dev/ic/
bcmgenet.c 619 struct genet_bufmap *bmap; local in function:genet_free_txbuf
621 bmap = &sc->sc_tx.buf_map[index];
622 if (bmap->mbuf == NULL)
625 if (bmap->map->dm_mapsize > 0) {
626 bus_dmamap_sync(sc->sc_tx.buf_tag, bmap->map,
627 0, bmap->map->dm_mapsize,
630 bus_dmamap_unload(sc->sc_tx.buf_tag, bmap->map);
631 m_freem(bmap->mbuf);
632 bmap->mbuf = NULL;
dwc_eqos.c 946 struct eqos_bufmap *bmap; local in function:eqos_txintr
967 bmap = &sc->sc_tx.buf_map[i];
968 if (bmap->mbuf != NULL) {
969 bus_dmamap_sync(sc->sc_dmat, bmap->map,
970 0, bmap->map->dm_mapsize,
972 bus_dmamap_unload(sc->sc_dmat, bmap->map);
973 m_freem(bmap->mbuf);
974 bmap->mbuf = NULL;
  /src/sys/arch/arm/sunxi/
sunxi_emac.c 854 struct sunxi_emac_bufmap *bmap; local in function:sunxi_emac_txintr
870 bmap = &sc->tx.buf_map[i];
871 if (bmap->mbuf != NULL) {
872 bus_dmamap_sync(sc->tx.buf_tag, bmap->map,
873 0, bmap->map->dm_mapsize,
875 bus_dmamap_unload(sc->tx.buf_tag, bmap->map);
876 m_freem(bmap->mbuf);
877 bmap->mbuf = NULL;

Completed in 17 milliseconds