Lines Matching refs:bmap1
236 DECLARE_BITMAP(bmap1, 1024);
239 bitmap_zero(bmap1, 1024);
243 bitmap_set(bmap1, 0, 19);
244 bitmap_copy(bmap2, bmap1, 23);
248 bitmap_copy(bmap2, bmap1, 23);
252 bitmap_set(bmap1, 0, 109);
253 bitmap_copy(bmap2, bmap1, 1024);
257 bitmap_copy(bmap2, bmap1, 1024);
265 bitmap_copy(bmap2, bmap1, 109); /* ... but 0-padded til word length */
269 bitmap_copy(bmap2, bmap1, 97); /* ... but aligned on word length */
498 DECLARE_BITMAP(bmap1, 1024);
504 memset(bmap1, 0x5a, sizeof(bmap1));
507 bitmap_set(bmap1, start, nbits);
509 if (!bitmap_equal(bmap1, bmap2, 1024)) {
513 if (!__bitmap_equal(bmap1, bmap2, 1024)) {
518 bitmap_clear(bmap1, start, nbits);
520 if (!bitmap_equal(bmap1, bmap2, 1024)) {
524 if (!__bitmap_equal(bmap1, bmap2, 1024)) {