Searched refs:bmap (Results 1 - 25 of 122) sorted by path

12345

/linux-master/fs/affs/
H A Dbitmap.c44 u32 blk, bmap, bit, mask, tmp; local
53 bmap = blk / sbi->s_bmap_bits;
55 bm = &sbi->s_bitmap[bmap];
60 if (sbi->s_last_bmap != bmap) {
66 sbi->s_last_bmap = bmap;
122 u32 blk, bmap, bit, mask, mask2, tmp; local
145 bmap = blk / sbi->s_bmap_bits;
146 bm = &sbi->s_bitmap[bmap];
154 /* search for the next bmap buffer with free bits */
159 bmap
[all...]
/linux-master/fs/gfs2/
H A DMakefile4 gfs2-y := acl.o bmap.o dir.o xattr.o glock.o \
/linux-master/fs/jfs/
H A Djfs_discard.c68 struct bmap *bmp = JFS_SBI(ip->i_sb)->bmap;
/linux-master/fs/nilfs2/
H A DMakefile4 btnode.o bmap.o btree.o direct.o dat.o recovery.o \
/linux-master/fs/reiserfs/
H A Dbitmap.c64 unsigned int bmap, offset; local
74 get_bit_address(s, block, &bmap, &offset);
99 if (bmap >= bmap_count) {
102 block, bmap);
116 * Searches in journal structures for a given block number (bmap, off).
120 static inline int is_block_in_journal(struct super_block *s, unsigned int bmap, argument
125 if (reiserfs_in_journal(s, bmap, off, 1, &tmp)) {
156 PROC_INFO_INC(s, scan_bitmap.bmap);
/linux-master/include/uapi/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h7 #define tcpoptstrip_set_bit(bmap, idx) \
8 (bmap[(idx) >> 5] |= 1U << (idx & 31))
9 #define tcpoptstrip_test_bit(bmap, idx) \
10 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/linux-master/arch/arm64/kvm/
H A Dpmu-emul.c763 unsigned long *bmap = vcpu->kvm->arch.pmu_filter; local
787 if (!bmap)
795 byte = bitmap_get_value8(bmap, base + i);
798 byte = bitmap_get_value8(bmap, 0x4000 + base + i);
/linux-master/arch/riscv/kernel/
H A Dcpufeature.c66 const unsigned long *bmap = (isa_bitmap) ? isa_bitmap : riscv_isa; local
71 return test_bit(bit, bmap) ? true : false;
/linux-master/arch/sparc/include/asm/
H A Dio-unit.h45 unsigned long bmap[(IOUNIT_DMA_SIZE >> (PAGE_SHIFT + 3)) / sizeof(unsigned long)]; member in struct:iounit_struct
/linux-master/arch/sparc/mm/
H A Dio-unit.c118 nexti: scan = find_next_zero_bit(iounit->bmap, limit, scan);
131 if (test_bit(scan++, iounit->bmap))
138 set_bit(scan, iounit->bmap);
192 clear_bit(vaddr, iounit->bmap);
210 clear_bit(vaddr, iounit->bmap);
/linux-master/drivers/crypto/marvell/octeontx/
H A Dotx_cptpf_ucode.c60 struct otx_cpt_bitmap bmap = { {0} }; local
67 return bmap;
72 bitmap_or(bmap.bits, bmap.bits,
73 eng_grp->engs[i].bmap,
75 bmap.size = eng_grp->g->engs_num;
83 return bmap;
179 struct otx_cpt_bitmap bmap; local
182 bmap = get_cores_bmap(&cpt->pdev->dev, eng_grp);
183 if (!bmap
207 struct otx_cpt_bitmap bmap = { {0} }; local
255 struct otx_cpt_bitmap bmap; local
585 struct otx_cpt_bitmap bmap; local
[all...]
H A Dotx_cptpf_ucode.h114 unsigned long *bmap; /* attached engines bitmap */ member in struct:otx_cpt_engs_rsvd
/linux-master/drivers/crypto/marvell/octeontx2/
H A Dotx2_cptpf_ucode.c32 struct otx2_cpt_bitmap bmap = { {0} }; local
40 return bmap;
45 bitmap_or(bmap.bits, bmap.bits,
46 eng_grp->engs[i].bmap,
48 bmap.size = eng_grp->g->engs_num;
56 return bmap;
193 for_each_set_bit(bit, engs->bmap, eng_grp->g->engs_num)
219 struct otx2_cpt_bitmap bmap,
227 for_each_set_bit(i, bmap
217 cptx_detach_and_disable_cores(struct otx2_cpt_eng_grp_info *eng_grp, struct otx2_cptpf_dev *cptpf, struct otx2_cpt_bitmap bmap, int blkaddr) argument
287 struct otx2_cpt_bitmap bmap; local
304 cptx_attach_and_enable_cores(struct otx2_cpt_eng_grp_info *eng_grp, struct otx2_cptpf_dev *cptpf, struct otx2_cpt_bitmap bmap, int blkaddr) argument
347 struct otx2_cpt_bitmap bmap; local
[all...]
H A Dotx2_cptpf_ucode.h109 unsigned long *bmap; /* attached engines bitmap */ member in struct:otx2_cpt_engs_rsvd
/linux-master/drivers/dma/idxd/
H A Dcdev.c354 set_bit(h, evl->bmap);
H A Ddevice.c754 unsigned long *bmap; local
762 bmap = bitmap_zalloc(size, GFP_KERNEL);
763 if (!bmap) {
782 evl->bmap = bmap;
803 bitmap_free(bmap);
833 bitmap_free(evl->bmap);
H A Didxd.h303 unsigned long *bmap; member in struct:idxd_evl
734 void multi_u64_to_bmap(unsigned long *bmap, u64 *val, int count);
H A Dinit.c442 void multi_u64_to_bmap(unsigned long *bmap, u64 *val, int count) argument
449 set_bit(nr, bmap);
H A Dirq.c318 if (test_bit(index, evl->bmap)) {
319 clear_bit(index, evl->bmap);
/linux-master/drivers/md/
H A Dmd-bitmap.c346 * address of each block (using bmap). These addresses will be used
376 ret = bmap(inode, &block);
1923 /* As future accesses to this file will use bmap,
/linux-master/drivers/media/mc/
H A Dmc-entity.c68 ent_enum->bmap = bitmap_zalloc(idx_max, GFP_KERNEL);
69 if (!ent_enum->bmap)
80 bitmap_free(ent_enum->bmap);
/linux-master/drivers/mfd/
H A Ddln2.c81 DECLARE_BITMAP(bmap, DLN2_MAX_RX_SLOTS);
362 *slot = find_first_zero_bit(rxs->bmap, DLN2_MAX_RX_SLOTS);
367 set_bit(*slot, rxs->bmap);
404 clear_bit(slot, rxs->bmap);
/linux-master/drivers/misc/bcm-vk/
H A Dbcm_vk.h386 DECLARE_BITMAP(bmap, VK_MSG_ID_BITMAP_SIZE);
H A Dbcm_vk_dev.c1134 bitmap_clear(vk->bmap, 0, VK_MSG_ID_BITMAP_SIZE);
H A Dbcm_vk_msg.c203 bitmap_clear(vk->bmap, start, nbits);
278 if (test_bit(vk->msg_id, vk->bmap)) {
283 bitmap_set(vk->bmap, vk->msg_id, 1);
377 bit_set = test_bit(msg_id, vk->bmap);
381 "Drained: fid %u size %u msg 0x%x(seq-%x) ctx 0x%x[fd-%d] args:[0x%x 0x%x] resp %s, bmap %d\n",
904 "Could not find MsgId[0x%x] for resp func %d bmap %d\n",
906 test_bit(msg_id, vk->bmap));

Completed in 344 milliseconds

12345