Lines Matching refs:orig

731 	DECLARE_BITMAP(orig, 500);  in test_for_each_set_bit_wrap()
735 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
739 bitmap_set(orig, bit, 1); in test_for_each_set_bit_wrap()
742 bitmap_set(orig, 100, 50); in test_for_each_set_bit_wrap()
747 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
750 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
756 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
760 bitmap_zero(orig, 500); in test_for_each_set_bit()
765 bitmap_set(orig, bit, 1); in test_for_each_set_bit()
768 bitmap_set(orig, 100, 50); in test_for_each_set_bit()
770 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
773 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
778 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
782 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
786 bitmap_set(orig, bit, 1); in test_for_each_set_bit_from()
789 bitmap_set(orig, 100, 50); in test_for_each_set_bit_from()
797 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
800 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
808 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
812 bitmap_fill(orig, 500); in test_for_each_clear_bit()
817 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit()
820 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit()
822 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
825 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
830 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
834 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
838 bitmap_clear(orig, bit, 1); in test_for_each_clear_bit_from()
841 bitmap_clear(orig, 100, 50); in test_for_each_clear_bit_from()
849 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
852 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
860 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
864 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
869 bitmap_set(orig, s, 1); in test_for_each_set_bitrange()
872 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange()
874 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
877 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
882 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
886 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
891 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange()
894 bitmap_clear(orig, 100, 50); in test_for_each_clear_bitrange()
896 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
899 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
904 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
908 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
912 bitmap_set(orig, s, 1); in test_for_each_set_bitrange_from()
915 bitmap_set(orig, 100, 50); in test_for_each_set_bitrange_from()
923 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
926 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
934 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
938 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
942 bitmap_clear(orig, s, 1); in test_for_each_clear_bitrange_from()
945 bitmap_set(orig, 100, 50); in test_for_each_clear_bitrange_from()
953 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
956 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()