Lines Matching full:500
766 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
767 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_wrap()
770 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
773 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_wrap()
779 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_wrap()
780 bitmap_zero(copy, 500); in test_for_each_set_bit_wrap()
782 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
785 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
791 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
792 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
795 bitmap_zero(orig, 500); in test_for_each_set_bit()
796 bitmap_zero(copy, 500); in test_for_each_set_bit()
799 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit()
805 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
808 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
813 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
814 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
817 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
820 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_from()
826 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_from()
827 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bit_from()
829 bitmap_zero(copy, 500); in test_for_each_set_bit_from()
832 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
835 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
837 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
843 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
844 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
847 bitmap_fill(orig, 500); in test_for_each_clear_bit()
848 bitmap_fill(copy, 500); in test_for_each_clear_bit()
851 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit()
857 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
860 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
865 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
866 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
869 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
872 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit_from()
878 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bit_from()
879 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bit_from()
881 bitmap_fill(copy, 500); in test_for_each_clear_bit_from()
884 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
887 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
889 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
895 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
896 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
899 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
900 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
903 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange()
909 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
912 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
917 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
918 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
921 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
922 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
925 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange()
931 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
934 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
939 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
940 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
943 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
946 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange_from()
952 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bitrange_from()
953 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bitrange_from()
955 bitmap_zero(copy, 500); in test_for_each_set_bitrange_from()
958 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
961 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
963 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
969 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
970 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
973 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
976 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange_from()
982 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bitrange_from()
983 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bitrange_from()
985 bitmap_fill(copy, 500); in test_for_each_clear_bitrange_from()
988 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
991 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()
993 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()
1119 …"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…