Lines Matching refs:bmap1
296 DECLARE_BITMAP(bmap1, 1024);
299 bitmap_zero(bmap1, 1024);
303 bitmap_set(bmap1, 0, 19);
304 bitmap_copy(bmap2, bmap1, 23);
308 bitmap_copy(bmap2, bmap1, 23);
312 bitmap_set(bmap1, 0, 109);
313 bitmap_copy(bmap2, bmap1, 1024);
317 bitmap_copy(bmap2, bmap1, 1024);
325 bitmap_copy(bmap2, bmap1, 109); /* ... but 0-padded til word length */
329 bitmap_copy(bmap2, bmap1, 97); /* ... but aligned on word length */
673 DECLARE_BITMAP(bmap1, 1024);
679 memset(bmap1, 0x5a, sizeof(bmap1));
682 bitmap_set(bmap1, start, nbits);
684 if (!bitmap_equal(bmap1, bmap2, 1024)) {
688 if (!__bitmap_equal(bmap1, bmap2, 1024)) {
693 bitmap_clear(bmap1, start, nbits);
695 if (!bitmap_equal(bmap1, bmap2, 1024)) {
699 if (!__bitmap_equal(bmap1, bmap2, 1024)) {