Lines Matching refs:map1
134 bitmap_t *map1 = bitmap_alloc(nbits); in test_bitmap() local
135 bitmap_full(map1, nbits); in test_bitmap()
136 assert(bitmap_is_full(map1, nbits)); in test_bitmap()
138 bitmap_and(map, map0, map1, nbits); in test_bitmap()
141 bitmap_and(map, map1, map1, nbits); in test_bitmap()
145 bitmap_or(map, map1, map0, nbits); in test_bitmap()
152 bitmap_and_not(map, map0, map1, nbits); in test_bitmap()
155 bitmap_and_not(map, map1, map0, nbits); in test_bitmap()
161 assert(!bitmap_equal(map, map1, nbits)); in test_bitmap()
163 assert(bitmap_equal(map, map1, nbits)); in test_bitmap()
170 int result = bitmap_and_not_mask_first(map1, map, nbits); in test_bitmap()
173 result = bitmap_and_not_mask_first(map1, map, nbits); in test_bitmap()
179 bitmap_free(map1, nbits); in test_bitmap()