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

123

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/iptables-1.4.12.1/include/linux/netfilter/
H A Dxt_TCPOPTSTRIP.h4 #define tcpoptstrip_set_bit(bmap, idx) \
5 (bmap[(idx) >> 5] |= 1U << (idx & 31))
6 #define tcpoptstrip_test_bit(bmap, idx) \
7 (((1U << (idx & 31)) & bmap[(idx) >> 5]) != 0)
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/fuse-lite/
H A Dfuse.h421 int (*bmap) (const char *, size_t blocksize, uint64_t *idx); member in struct:fuse_operations
H A Dfuse_lowlevel.h799 void (*bmap) (fuse_req_t req, fuse_ino_t ino, size_t blocksize, member in struct:fuse_lowlevel_ops
963 * bmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libfuse-lite/
H A Dfuse.c849 if (fs->op.bmap)
850 return fs->op.bmap(path, blocksize, idx);
2445 .bmap = fuse_lib_bmap,
H A Dfuse_lowlevel.c937 if (req->f->op.bmap)
938 req->f->op.bmap(req, nodeid, arg->blocksize, arg->block);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/src/
H A Dntfs-3g.c1693 .bmap = ntfs_fuse_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/rpc_server/
H A Dsrv_pipe_hnd.c53 static struct bitmap *bmap; variable in typeref:struct:bitmap
130 bmap = bitmap_allocate(MAX_OPEN_PIPES);
131 if (!bmap)
195 i = bitmap_find(bmap, next_pipe);
239 bitmap_set(bmap, i);
1076 bitmap_clear(bmap, p->pnum - pipe_handle_offset);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/source/smbd/
H A Dconn.c88 static struct bitmap *bmap; variable in typeref:struct:bitmap
96 bmap = bitmap_allocate(BITMAP_BLOCK_SZ);
172 i = bitmap_find(bmap, find_offset);
176 int oldsz = bmap->n;
177 int newsz = bmap->n + BITMAP_BLOCK_SZ;
191 bitmap_copy(nbmap, bmap);
192 bitmap_free(bmap);
194 bmap = nbmap;
214 bitmap_set(bmap, i);
338 bitmap_clear(bmap, con
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/i386/kernel/
H A Dsrat.c40 #define BMAP_SET(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] |= 1 << NODE_ARRAY_OFFSET(bit))
41 #define BMAP_TEST(bmap, bit) ((bmap)[NODE_ARRAY_INDEX(bit)] & (1 << NODE_ARRAY_OFFSET(bit)))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/sparc/mm/
H A Dio-unit.c100 nexti: scan = find_next_zero_bit(iounit->bmap, limit, scan);
113 if (test_bit(scan++, iounit->bmap))
120 set_bit(scan, iounit->bmap);
162 clear_bit(vaddr, iounit->bmap);
179 clear_bit(vaddr, iounit->bmap);
286 nexti: scan = find_next_zero_bit(iounit->bmap, limit, scan);
299 if (test_bit(scan++, iounit->bmap))
305 set_bit(scan, iounit->bmap);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/md/
H A Dbitmap.c341 * address of each block (using bmap). These addresses will be used
376 bh->b_blocknr = bmap(inode, block);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/adfs/
H A Dinode.c81 .bmap = _adfs_bmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/affs/
H A Dbitmap.c66 u32 blk, bmap, bit, mask, tmp; local
75 bmap = blk / sbi->s_bmap_bits;
77 bm = &sbi->s_bitmap[bmap];
82 if (sbi->s_last_bmap != bmap) {
88 sbi->s_last_bmap = bmap;
145 u32 blk, bmap, bit, mask, mask2, tmp; local
168 bmap = blk / sbi->s_bmap_bits;
169 bm = &sbi->s_bitmap[bmap];
177 /* search for the next bmap buffer with free bits */
182 bmap
[all...]
H A Dfile.c417 .bmap = _affs_bmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/befs/
H A Dlinuxvfs.c78 .bmap = befs_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/bfs/
H A Dfile.c162 .bmap = bfs_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ecryptfs/
H A Dmmap.c817 if (lower_inode->i_mapping->a_ops->bmap)
818 rc = lower_inode->i_mapping->a_ops->bmap(lower_inode->i_mapping,
850 .bmap = ecryptfs_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/efs/
H A Dinode.c27 .bmap = _efs_bmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext2/
H A Dinode.c694 .bmap = ext2_bmap,
701 .bmap = ext2_bmap,
712 .bmap = ext2_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext3/
H A Dinode.c1295 * bmap() is special. It gets used by applications such as lilo and by
1305 * So, if we see any bmap calls here on a modified, data-journaled file,
1317 * bmap on dirty files is expected to be extremely rare:
1321 * (bmap requires CAP_SYS_RAWIO so this does not
1327 * regular files. If somebody wants to bmap a directory
1659 .bmap = ext3_bmap,
1673 .bmap = ext3_bmap,
1688 .bmap = ext3_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ext4/
H A Dinode.c1294 * bmap() is special. It gets used by applications such as lilo and by
1304 * So, if we see any bmap calls here on a modified, data-journaled file,
1316 * bmap on dirty files is expected to be extremely rare:
1320 * (bmap requires CAP_SYS_RAWIO so this does not
1326 * regular files. If somebody wants to bmap a directory
1658 .bmap = ext4_bmap,
1672 .bmap = ext4_bmap,
1687 .bmap = ext4_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/fat/
H A Dinode.c196 .bmap = _fat_bmap
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/freevxfs/
H A Dvxfs_subr.c47 .bmap = vxfs_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/fuse/
H A Dfile.c826 .bmap = fuse_bmap,
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/gfs2/
H A DMakefile2 gfs2-y := acl.o bmap.o daemon.o dir.o eaops.o eattr.o glock.o \

Completed in 288 milliseconds

123