Lines Matching refs:copy

780 	DECLARE_BITMAP(copy, 500);  in test_for_each_set_bit_wrap()
793 bitmap_zero(copy, 500); in test_for_each_set_bit_wrap()
796 bitmap_set(copy, bit, 1); in test_for_each_set_bit_wrap()
798 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
805 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
809 bitmap_zero(copy, 500); in test_for_each_set_bit()
819 bitmap_set(copy, bit, 1); in test_for_each_set_bit()
821 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
827 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
842 bitmap_zero(copy, 500); in test_for_each_set_bit_from()
846 bitmap_set(copy, bit, 1); in test_for_each_set_bit_from()
850 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
857 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
861 bitmap_fill(copy, 500); in test_for_each_clear_bit()
871 bitmap_clear(copy, bit, 1); in test_for_each_clear_bit()
873 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
879 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
894 bitmap_fill(copy, 500); in test_for_each_clear_bit_from()
898 bitmap_clear(copy, bit, 1); in test_for_each_clear_bit_from()
902 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
909 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
913 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
923 bitmap_set(copy, s, e-s); in test_for_each_set_bitrange()
925 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
931 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
935 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
945 bitmap_clear(copy, s, e-s); in test_for_each_clear_bitrange()
947 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
953 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
968 bitmap_zero(copy, 500); in test_for_each_set_bitrange_from()
972 bitmap_set(copy, s, e - s); in test_for_each_set_bitrange_from()
976 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
983 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
998 bitmap_fill(copy, 500); in test_for_each_clear_bitrange_from()
1002 bitmap_clear(copy, s, e - s); in test_for_each_clear_bitrange_from()
1006 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()