Lines Matching full:500
807 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_wrap()
808 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_wrap()
811 bitmap_zero(orig, 500); in test_for_each_set_bit_wrap()
814 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_wrap()
820 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_wrap()
821 bitmap_zero(copy, 500); in test_for_each_set_bit_wrap()
823 for_each_set_bit_wrap(bit, orig, 500, wr) in test_for_each_set_bit_wrap()
826 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit_wrap()
832 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit()
833 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit()
836 bitmap_zero(orig, 500); in test_for_each_set_bit()
837 bitmap_zero(copy, 500); in test_for_each_set_bit()
840 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit()
846 for_each_set_bit(bit, orig, 500) in test_for_each_set_bit()
849 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bit()
854 DECLARE_BITMAP(orig, 500); in test_for_each_set_bit_from()
855 DECLARE_BITMAP(copy, 500); in test_for_each_set_bit_from()
858 bitmap_zero(orig, 500); in test_for_each_set_bit_from()
861 for (bit = 0; bit < 500; bit += 10) in test_for_each_set_bit_from()
867 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bit_from()
868 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bit_from()
870 bitmap_zero(copy, 500); in test_for_each_set_bit_from()
873 for_each_set_bit_from(bit, orig, 500) in test_for_each_set_bit_from()
876 bitmap_copy(tmp, orig, 500); in test_for_each_set_bit_from()
878 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bit_from()
884 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit()
885 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit()
888 bitmap_fill(orig, 500); in test_for_each_clear_bit()
889 bitmap_fill(copy, 500); in test_for_each_clear_bit()
892 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit()
898 for_each_clear_bit(bit, orig, 500) in test_for_each_clear_bit()
901 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bit()
906 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bit_from()
907 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bit_from()
910 bitmap_fill(orig, 500); in test_for_each_clear_bit_from()
913 for (bit = 0; bit < 500; bit += 10) in test_for_each_clear_bit_from()
919 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bit_from()
920 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bit_from()
922 bitmap_fill(copy, 500); in test_for_each_clear_bit_from()
925 for_each_clear_bit_from(bit, orig, 500) in test_for_each_clear_bit_from()
928 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bit_from()
930 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bit_from()
936 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange()
937 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange()
940 bitmap_zero(orig, 500); in test_for_each_set_bitrange()
941 bitmap_zero(copy, 500); in test_for_each_set_bitrange()
944 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange()
950 for_each_set_bitrange(s, e, orig, 500) in test_for_each_set_bitrange()
953 expect_eq_bitmap(orig, copy, 500); in test_for_each_set_bitrange()
958 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange()
959 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange()
962 bitmap_fill(orig, 500); in test_for_each_clear_bitrange()
963 bitmap_fill(copy, 500); in test_for_each_clear_bitrange()
966 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange()
972 for_each_clear_bitrange(s, e, orig, 500) in test_for_each_clear_bitrange()
975 expect_eq_bitmap(orig, copy, 500); in test_for_each_clear_bitrange()
980 DECLARE_BITMAP(orig, 500); in test_for_each_set_bitrange_from()
981 DECLARE_BITMAP(copy, 500); in test_for_each_set_bitrange_from()
984 bitmap_zero(orig, 500); in test_for_each_set_bitrange_from()
987 for (s = 0; s < 500; s += 10) in test_for_each_set_bitrange_from()
993 for (wr = 0; wr < 500; wr++) { in test_for_each_set_bitrange_from()
994 DECLARE_BITMAP(tmp, 500); in test_for_each_set_bitrange_from()
996 bitmap_zero(copy, 500); in test_for_each_set_bitrange_from()
999 for_each_set_bitrange_from(s, e, orig, 500) in test_for_each_set_bitrange_from()
1002 bitmap_copy(tmp, orig, 500); in test_for_each_set_bitrange_from()
1004 expect_eq_bitmap(tmp, copy, 500); in test_for_each_set_bitrange_from()
1010 DECLARE_BITMAP(orig, 500); in test_for_each_clear_bitrange_from()
1011 DECLARE_BITMAP(copy, 500); in test_for_each_clear_bitrange_from()
1014 bitmap_fill(orig, 500); in test_for_each_clear_bitrange_from()
1017 for (s = 0; s < 500; s += 10) in test_for_each_clear_bitrange_from()
1023 for (wr = 0; wr < 500; wr++) { in test_for_each_clear_bitrange_from()
1024 DECLARE_BITMAP(tmp, 500); in test_for_each_clear_bitrange_from()
1026 bitmap_fill(copy, 500); in test_for_each_clear_bitrange_from()
1029 for_each_clear_bitrange_from(s, e, orig, 500) in test_for_each_clear_bitrange_from()
1032 bitmap_copy(tmp, orig, 500); in test_for_each_clear_bitrange_from()
1034 expect_eq_bitmap(tmp, copy, 500); in test_for_each_clear_bitrange_from()
1160 …"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…