Lines Matching full:500

743 	DECLARE_BITMAP(orig, 500);  in test_for_each_set_bit_wrap()
744 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_wrap()
747 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
750 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_wrap()
756 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_wrap()
757 bitmap_zero(copy, 500); in test_for_each_set_bit_wrap()
759 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
762 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
768 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
769 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
772 bitmap_zero(orig, 500); in test_for_each_set_bit()
773 bitmap_zero(copy, 500); in test_for_each_set_bit()
776 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit()
782 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
785 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
790 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
791 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
794 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
797 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_from()
803 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_from()
804 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bit_from()
806 bitmap_zero(copy, 500); in test_for_each_set_bit_from()
809 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
812 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
814 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
820 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
821 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
824 bitmap_fill(orig, 500); in test_for_each_clear_bit()
825 bitmap_fill(copy, 500); in test_for_each_clear_bit()
828 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit()
834 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
837 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
842 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
843 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
846 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
849 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit_from()
855 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bit_from()
856 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bit_from()
858 bitmap_fill(copy, 500); in test_for_each_clear_bit_from()
861 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
864 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
866 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
872 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
873 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
876 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
877 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
880 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange()
886 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
889 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
894 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
895 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
898 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
899 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
902 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange()
908 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
911 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
916 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
917 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
920 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
923 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange_from()
929 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bitrange_from()
930 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bitrange_from()
932 bitmap_zero(copy, 500); in test_for_each_set_bitrange_from()
935 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
938 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
940 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
946 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
947 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
950 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
953 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange_from()
959 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bitrange_from()
960 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bitrange_from()
962 bitmap_fill(copy, 500); in test_for_each_clear_bitrange_from()
965 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
968 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()
970 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()
1096 …"81,484-485,488-489,492-493,496-497,500-501,504-505,508-509,512,516,520,524,528,532,536,540,544-54…