Home
last modified time | relevance | path

Searched refs:bmap1 (Results 1 – 2 of 2) sorted by relevance

/linux/lib/
H A Dtest_bitmap.c305 DECLARE_BITMAP(bmap1, 1024); in test_copy()
308 bitmap_zero(bmap1, 1024); in test_copy()
312 bitmap_set(bmap1, 0, 19); in test_copy()
313 bitmap_copy(bmap2, bmap1, 23); in test_copy()
317 bitmap_copy(bmap2, bmap1, 23); in test_copy()
321 bitmap_set(bmap1, 0, 109); in test_copy()
322 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
326 bitmap_copy(bmap2, bmap1, 1024); in test_copy()
334 bitmap_copy(bmap2, bmap1, 109); /* ... but 0-padded til word length */ in test_copy()
338 bitmap_copy(bmap2, bmap1, 97); /* ... but aligned on word length */ in test_copy()
[all …]
/linux/fs/nfsd/
H A Dnfs4proc.c3436 u32 bmap0 = bmap[0], bmap1 = bmap[1], bmap2 = bmap[2]; in nfsd4_getattr_rsize() local
3444 if (bmap1 & FATTR4_WORD1_OWNER) { in nfsd4_getattr_rsize()
3446 bmap1 &= ~FATTR4_WORD1_OWNER; in nfsd4_getattr_rsize()
3448 if (bmap1 & FATTR4_WORD1_OWNER_GROUP) { in nfsd4_getattr_rsize()
3450 bmap1 &= ~FATTR4_WORD1_OWNER_GROUP; in nfsd4_getattr_rsize()
3464 ret += 16 * (hweight32(bmap0) + hweight32(bmap1) + hweight32(bmap2)); in nfsd4_getattr_rsize()