Searched refs:BITMAP_LEN (Results 1 – 1 of 1) sorted by relevance
/linux-6.12.1/lib/ |
D | find_bit_benchmark.c | 26 #define BITMAP_LEN (4096UL * 8 * 10) macro 29 static DECLARE_BITMAP(bitmap, BITMAP_LEN) __initdata; 30 static DECLARE_BITMAP(bitmap2, BITMAP_LEN) __initdata; 54 static DECLARE_BITMAP(cp, BITMAP_LEN) __initdata; in test_find_first_and_bit() 58 bitmap_copy(cp, bitmap, BITMAP_LEN); in test_find_first_and_bit() 77 for (cnt = i = 0; i < BITMAP_LEN; cnt++) in test_find_next_bit() 78 i = find_next_bit(bitmap, BITMAP_LEN, i) + 1; in test_find_next_bit() 91 for (cnt = i = 0; i < BITMAP_LEN; cnt++) in test_find_next_zero_bit() 141 for (cnt = i = 0; i < BITMAP_LEN; cnt++) in test_find_next_and_bit() 142 i = find_next_and_bit(bitmap, bitmap2, BITMAP_LEN, i + 1); in test_find_next_and_bit() [all …]
|