Lines Matching refs:orig

820 	DECLARE_BITMAP(orig, 500);  in test_for_each_set_bit_wrap()
824 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
828 bitmap_set(orig, bit, 1); in test_for_each_set_bit_wrap()
831 bitmap_set(orig, 100, 50); in test_for_each_set_bit_wrap()
836 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
839 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
845 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
849 bitmap_zero(orig, 500); in test_for_each_set_bit()
854 bitmap_set(orig, bit, 1); in test_for_each_set_bit()
857 bitmap_set(orig, 100, 50); in test_for_each_set_bit()
859 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
862 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
867 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
871 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
875 bitmap_set(orig, bit, 1); in test_for_each_set_bit_from()
878 bitmap_set(orig, 100, 50); in test_for_each_set_bit_from()
886 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
889 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
941 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
945 bitmap_fill(orig, 500); in test_for_each_clear_bit()
950 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit()
953 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit()
955 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
958 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
963 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
967 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
971 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit_from()
974 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit_from()
982 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
985 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
993 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
997 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
1002 bitmap_set(orig, s, 1); in test_for_each_set_bitrange()
1005 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange()
1007 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
1010 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
1015 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
1019 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
1024 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange()
1027 bitmap_clear(orig, 100, 50); in test_for_each_clear_bitrange()
1029 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
1032 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
1037 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
1041 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
1045 bitmap_set(orig, s, 1); in test_for_each_set_bitrange_from()
1048 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange_from()
1056 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
1059 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
1067 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
1071 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
1075 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange_from()
1078 bitmap_set(orig, 100, 50); in test_for_each_clear_bitrange_from()
1086 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
1089 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()