Home
last modified time | relevance | path

Searched refs:bmap (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/gcc/
H A Dsbitmap.c39 sbitmap bmap; in sbitmap_alloc() local
49 return bmap; in sbitmap_alloc()
68 bmap = xrealloc (bmap, amt); in sbitmap_resize()
75 memset (bmap->elms + bmap->size, -1, bytes - bmap->bytes); in sbitmap_resize()
80 bmap->elms[bmap->size - 1] in sbitmap_resize()
90 memset (bmap->elms + bmap->size, 0, bytes - bmap->bytes); in sbitmap_resize()
104 return bmap; in sbitmap_resize()
130 return bmap; in sbitmap_realloc()
195 memset (bmap->elms, 0, bmap->bytes); in sbitmap_zero()
205 memset (bmap->elms, -1, bmap->bytes); in sbitmap_ones()
[all …]
H A Dgcse.c2423 compute_transp (rtx x, int indx, sbitmap *bmap, int set_p) in compute_transp() argument
2448 SET_BIT (bmap[bb->index], indx); in compute_transp()
2453 SET_BIT (bmap[r->bb_index], indx); in compute_transp()
2462 RESET_BIT (bmap[bb->index], indx); in compute_transp()
2467 RESET_BIT (bmap[r->bb_index], indx); in compute_transp()
2484 SET_BIT (bmap[bb_index], indx); in compute_transp()
2486 RESET_BIT (bmap[bb_index], indx); in compute_transp()
2512 SET_BIT (bmap[bb_index], indx); in compute_transp()
2514 RESET_BIT (bmap[bb_index], indx); in compute_transp()
2554 compute_transp (XEXP (x, i), indx, bmap, set_p); in compute_transp()
[all …]
/freebsd-12.1/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-12.1/tests/sys/fs/fusefs/
H A Dbmap.cc61 in.body.bmap.block == lbn && in expect_bmap()
62 in.body.bmap.blocksize == blocksize); in expect_bmap()
66 SET_OUT_HEADER_LEN(out, bmap); in expect_bmap()
67 out.body.bmap.block = pbn; in expect_bmap()
83 TEST_F(Bmap, bmap) in TEST_F() argument
H A Dmockfs.hh140 fuse_bmap_in bmap; member
182 fuse_bmap_out bmap; member
H A DMakefile12 GTESTS+= bmap
H A Dmockfs.cc176 in.body.bmap.block, in.body.bmap.blocksize); in debug_request()
636 EXPECT_EQ(inlen, fih + sizeof(in.body.bmap)); in audit_request()
/freebsd-12.1/stand/libsa/
H A Dnandfs.c423 struct bmap_buf *bmap, *tmp; in nandfs_free_node() local
427 LIST_REMOVE(bmap, list); in nandfs_free_node()
428 free(bmap->map); in nandfs_free_node()
429 free(bmap); in nandfs_free_node()
854 struct bmap_buf *bmap; in nandfs_get_map() local
857 LIST_FOREACH(bmap, &node->bmap_bufs, list) { in nandfs_get_map()
858 if (bmap->blknr == blknr) in nandfs_get_map()
859 return (bmap->map); in nandfs_get_map()
868 bmap = malloc(sizeof(struct bmap_buf)); in nandfs_get_map()
869 bmap->blknr = blknr; in nandfs_get_map()
[all …]
/freebsd-12.1/sys/dev/ffec/
H A Dif_ffec.c707 struct ffec_bufmap *bmap; in ffec_txfinish_locked() local
726 m_freem(bmap->mbuf); in ffec_txfinish_locked()
727 bmap->mbuf = NULL; in ffec_txfinish_locked()
814 struct ffec_bufmap *bmap; in ffec_rxfinish_onebuf() local
832 bmap = &sc->rxbuf_map[sc->rx_idx]; in ffec_rxfinish_onebuf()
836 m = bmap->mbuf; in ffec_rxfinish_onebuf()
837 bmap->mbuf = NULL; in ffec_rxfinish_onebuf()
1040 struct ffec_bufmap *bmap; in ffec_stop_locked() local
1076 bmap = &sc->txbuf_map[idx]; in ffec_stop_locked()
1079 m_freem(bmap->mbuf); in ffec_stop_locked()
[all …]
/freebsd-12.1/sys/modules/nandfs/
H A DMakefile7 bmap.c nandfs_bmap.c nandfs_dir.c nandfs_subr.c nandfs_vfsops.c \
/freebsd-12.1/sys/dev/dwc/
H A Dif_dwc.c715 struct dwc_bufmap *bmap; in dwc_txfinish_locked() local
726 bmap = &sc->txbuf_map[sc->tx_idx_tail]; in dwc_txfinish_locked()
727 bus_dmamap_sync(sc->txbuf_tag, bmap->map, in dwc_txfinish_locked()
729 bus_dmamap_unload(sc->txbuf_tag, bmap->map); in dwc_txfinish_locked()
730 m_freem(bmap->mbuf); in dwc_txfinish_locked()
731 bmap->mbuf = NULL; in dwc_txfinish_locked()
/freebsd-12.1/sys/arm/allwinner/
H A Dif_awg.c512 struct awg_bufmap *bmap; in awg_clean_txbuf() local
516 bmap = &sc->tx.buf_map[index]; in awg_clean_txbuf()
517 if (bmap->mbuf != NULL) { in awg_clean_txbuf()
518 bus_dmamap_sync(sc->tx.buf_tag, bmap->map, in awg_clean_txbuf()
520 bus_dmamap_unload(sc->tx.buf_tag, bmap->map); in awg_clean_txbuf()
521 m_freem(bmap->mbuf); in awg_clean_txbuf()
522 bmap->mbuf = NULL; in awg_clean_txbuf()
/freebsd-12.1/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.c1773 int bnxt_hwrm_func_rgtr_async_events(struct bnxt_softc *softc, unsigned long *bmap, in bnxt_hwrm_func_rgtr_async_events() argument
1797 if (bmap && bmap_size) { in bnxt_hwrm_func_rgtr_async_events()
1799 if (bit_test(bmap, i)) in bnxt_hwrm_func_rgtr_async_events()
/freebsd-12.1/sys/dev/sound/pci/
H A Demu10k1.c169 u_int8_t bmap[EMUMAXPAGES / 8]; member
1363 if (mem->bmap[idx >> 3] & (1 << (idx & 7))) in emu_memalloc()
1388 mem->bmap[idx >> 3] |= 1 << (idx & 7); in emu_memalloc()
1419 mem->bmap[idx >> 3] &= ~(1 << (idx & 7)); in emu_memfree()
H A Demu10kx.c282 uint8_t bmap[EMU_MAXPAGES / 8]; member
1111 if (mem->bmap[idx >> 3] & (1 << (idx & 7))) in emu_memalloc()
1143 mem->bmap[idx >> 3] |= 1 << (idx & 7); in emu_memalloc()
1169 mem->bmap[idx >> 3] &= ~(1 << (idx & 7)); in emu_memfree()
/freebsd-12.1/sys/kern/
H A Dvnode_if.src391 %% bmap vp L L L
/freebsd-12.1/sys/dev/hyperv/netvsc/
H A Dif_hn.c689 u_long *bmap = sc->hn_chim_bmap; in hn_chim_alloc() local
695 idx = ffsl(~bmap[i]); in hn_chim_alloc()
703 if (atomic_testandset_long(&bmap[i], idx)) in hn_chim_alloc()
/freebsd-12.1/usr.sbin/services_mkdb/
H A Dservices2231 bmap 3421/tcp #Bull Apprise portmapper
2232 bmap 3421/udp #Bull Apprise portmapper
/freebsd-12.1/sys/conf/
H A Dfiles3589 fs/nandfs/bmap.c optional nandfs