Lines Matching full:500
731 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
732 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_wrap()
735 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
738 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_wrap()
744 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_wrap()
745 bitmap_zero(copy, 500); 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()
757 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
760 bitmap_zero(orig, 500); in test_for_each_set_bit()
761 bitmap_zero(copy, 500); in test_for_each_set_bit()
764 for (bit = 0; bit < 500; bit += 10) 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()
779 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
782 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
785 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_from()
791 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_from()
792 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bit_from()
794 bitmap_zero(copy, 500); 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()
802 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
808 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
809 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
812 bitmap_fill(orig, 500); in test_for_each_clear_bit()
813 bitmap_fill(copy, 500); in test_for_each_clear_bit()
816 for (bit = 0; bit < 500; bit += 10) 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()
831 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
834 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
837 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit_from()
843 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bit_from()
844 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bit_from()
846 bitmap_fill(copy, 500); 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()
854 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
860 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
861 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
864 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
865 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
868 for (s = 0; s < 500; s += 10) 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()
883 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
886 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
887 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
890 for (s = 0; s < 500; s += 10) 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()
905 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
908 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
911 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange_from()
917 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bitrange_from()
918 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bitrange_from()
920 bitmap_zero(copy, 500); 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()
928 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
934 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
935 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
938 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
941 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange_from()
947 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bitrange_from()
948 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bitrange_from()
950 bitmap_fill(copy, 500); 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()
958 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()
1084 …"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…