Searched refs:bmap (Results 1 - 13 of 13) sorted by last modified time

/freebsd-11-stable/sys/dev/sound/pci/
H A Demu10k1.c167 u_int8_t bmap[EMUMAXPAGES / 8]; member in struct:emu_mem
1362 if (mem->bmap[idx >> 3] & (1 << (idx & 7)))
1387 mem->bmap[idx >> 3] |= 1 << (idx & 7);
1418 mem->bmap[idx >> 3] &= ~(1 << (idx & 7));
H A Demu10kx.c280 uint8_t bmap[EMU_MAXPAGES / 8]; member in struct:emu_mem
1109 if (mem->bmap[idx >> 3] & (1 << (idx & 7)))
1141 mem->bmap[idx >> 3] |= 1 << (idx & 7);
1167 mem->bmap[idx >> 3] &= ~(1 << (idx & 7));
/freebsd-11-stable/sys/dev/hyperv/netvsc/
H A Dif_hn.c689 u_long *bmap = sc->hn_chim_bmap; local
695 idx = ffsl(~bmap[i]);
703 if (atomic_testandset_long(&bmap[i], idx))
/freebsd-11-stable/sys/dev/ffec/
H A Dif_ffec.c705 struct ffec_bufmap *bmap; local
720 bmap = &sc->txbuf_map[sc->tx_idx_tail];
721 bus_dmamap_sync(sc->txbuf_tag, bmap->map,
723 bus_dmamap_unload(sc->txbuf_tag, bmap->map);
724 m_freem(bmap->mbuf);
725 bmap->mbuf = NULL;
812 struct ffec_bufmap *bmap; local
830 bmap = &sc->rxbuf_map[sc->rx_idx];
832 bus_dmamap_sync(sc->rxbuf_tag, bmap->map, BUS_DMASYNC_POSTREAD);
833 bus_dmamap_unload(sc->rxbuf_tag, bmap
1038 struct ffec_bufmap *bmap; local
[all...]
/freebsd-11-stable/sys/dev/qlnx/qlnxe/
H A Decore_rdma.h241 struct ecore_bmap *bmap,
247 struct ecore_bmap *bmap,
252 struct ecore_bmap *bmap,
257 struct ecore_bmap *bmap,
262 struct ecore_bmap *bmap,
267 struct ecore_bmap *bmap,
/freebsd-11-stable/sys/dev/bnxt/
H A Dbnxt_hwrm.h113 int bnxt_hwrm_func_rgtr_async_events(struct bnxt_softc *softc, unsigned long *bmap,
H A Dbnxt_hwrm.c1777 int bnxt_hwrm_func_rgtr_async_events(struct bnxt_softc *softc, unsigned long *bmap, argument
1801 if (bmap && bmap_size) {
1803 if (bit_test(bmap, i))
/freebsd-11-stable/sys/arm/allwinner/
H A Dif_awg.c793 struct awg_bufmap *bmap; local
810 bmap = &sc->tx.buf_map[i];
811 if (bmap->mbuf != NULL) {
812 bus_dmamap_sync(sc->tx.buf_tag, bmap->map,
814 bus_dmamap_unload(sc->tx.buf_tag, bmap->map);
815 m_freem(bmap->mbuf);
816 bmap->mbuf = NULL;
/freebsd-11-stable/stand/libsa/
H A Dnandfs.c423 struct bmap_buf *bmap, *tmp; local
426 LIST_FOREACH_SAFE(bmap, &node->bmap_bufs, list, tmp) {
427 LIST_REMOVE(bmap, list);
428 free(bmap->map);
429 free(bmap);
854 struct bmap_buf *bmap; local
857 LIST_FOREACH(bmap, &node->bmap_bufs, list) {
858 if (bmap->blknr == blknr)
859 return (bmap->map);
868 bmap
[all...]
/freebsd-11-stable/sys/modules/nandfs/
H A DMakefile7 bmap.c nandfs_bmap.c nandfs_dir.c nandfs_subr.c nandfs_vfsops.c \
/freebsd-11-stable/sys/dev/dwc/
H A Dif_dwc.c715 struct dwc_bufmap *bmap; local
726 bmap = &sc->txbuf_map[sc->tx_idx_tail];
727 bus_dmamap_sync(sc->txbuf_tag, bmap->map,
729 bus_dmamap_unload(sc->txbuf_tag, bmap->map);
730 m_freem(bmap->mbuf);
731 bmap->mbuf = NULL;
/freebsd-11-stable/contrib/gcc/
H A Dgcse.c2434 compute_transp (rtx x, int indx, sbitmap *bmap, int set_p)
2459 SET_BIT (bmap[bb->index], indx);
2464 SET_BIT (bmap[r->bb_index], indx);
2473 RESET_BIT (bmap[bb->index], indx);
2478 RESET_BIT (bmap[r->bb_index], indx);
2495 SET_BIT (bmap[bb_index], indx);
2497 RESET_BIT (bmap[bb_index], indx);
2523 SET_BIT (bmap[bb_index], indx);
2525 RESET_BIT (bmap[bb_index], indx);
2565 compute_transp (XEXP (x, i), indx, bmap, set_
2423 compute_transp(rtx x, int indx, sbitmap *bmap, int set_p) argument
2554 compute_transp (XEXP (x, i), indx, bmap, set_p); local
2558 compute_transp (XVECEXP (x, i, j), indx, bmap, set_p); local
[all...]
H A Dsbitmap.c39 sbitmap bmap; local
45 bmap = xmalloc (amt);
46 bmap->n_bits = n_elms;
47 bmap->size = size;
48 bmap->bytes = bytes;
49 return bmap;
57 sbitmap_resize (sbitmap bmap, unsigned int n_elms, int def) argument
64 if (bytes > bmap->bytes)
68 bmap = xrealloc (bmap, am
113 sbitmap bmap; local
193 sbitmap_zero(sbitmap bmap) argument
201 sbitmap_ones(sbitmap bmap) argument
216 sbitmap_vector_zero(sbitmap *bmap, unsigned int n_vecs) argument
227 sbitmap_vector_ones(sbitmap *bmap, unsigned int n_vecs) argument
691 sbitmap_first_set_bit(sbitmap bmap) argument
704 sbitmap_last_set_bit(sbitmap bmap) argument
734 dump_sbitmap(FILE *file, sbitmap bmap) argument
755 dump_sbitmap_file(FILE *file, sbitmap bmap) argument
778 debug_sbitmap(sbitmap bmap) argument
[all...]

Completed in 173 milliseconds