Lines Matching refs:next_false_index

21     assert_eq!(bitmap.next_false_index(0), Some(1));  in test_empty_bitmap_32()
34 assert_eq!(bitmap.next_false_index(0), None); in test_empty_bitmap_32()
51 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_empty_bitmap_64()
64 assert_eq!(bitmap.next_false_index(0), None); in test_empty_bitmap_64()
83 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_32_first_1()
91 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_32_first_1()
102 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_32_first_1()
125 assert_eq!(bitmap.next_false_index(15), Some(16)); in test_alloc_bitmap_32_middle_1()
133 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_32_middle_1()
144 assert_eq!(bitmap.next_false_index(1), Some(15)); in test_alloc_bitmap_32_middle_1()
167 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_32_last_1()
175 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_32_last_1()
186 assert_eq!(bitmap.next_false_index(0), Some(31)); in test_alloc_bitmap_32_last_1()
208 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_64_first_1()
216 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_64_first_1()
227 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_64_first_1()
250 assert_eq!(bitmap.next_false_index(15), Some(16)); in test_alloc_bitmap_64_middle_1()
258 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_64_middle_1()
269 assert_eq!(bitmap.next_false_index(1), Some(15)); in test_alloc_bitmap_64_middle_1()
292 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_64_last_1()
300 assert_eq!(bitmap.next_false_index(2), Some(3)); in test_alloc_bitmap_64_last_1()
311 assert_eq!(bitmap.next_false_index(0), Some(63)); in test_alloc_bitmap_64_last_1()
336 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_64_two_1_first()
351 assert_eq!(bitmap.next_false_index(0), Some(63)); in test_alloc_bitmap_64_two_1_first()
359 assert_eq!(bitmap.next_false_index(2), Some(63)); in test_alloc_bitmap_64_two_1_first()
378 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_64_two_1_middle()
393 assert_eq!(bitmap.next_false_index(0), Some(15)); in test_alloc_bitmap_64_two_1_middle()
394 assert_eq!(bitmap.next_false_index(15), Some(63)); in test_alloc_bitmap_64_two_1_middle()
402 assert_eq!(bitmap.next_false_index(2), Some(15)); in test_alloc_bitmap_64_two_1_middle()
420 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_128_two_1_seperate_first()
436 assert_eq!(bitmap.next_false_index(0), Some(127)); in test_alloc_bitmap_128_two_1_seperate_first()
463 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_128_two_1_nearby_middle()
464 assert_eq!(bitmap.next_false_index(63), Some(65)); in test_alloc_bitmap_128_two_1_nearby_middle()
482 assert_eq!(bitmap.next_false_index(0), Some(63)); in test_alloc_bitmap_128_two_1_nearby_middle()
483 assert_eq!(bitmap.next_false_index(63), Some(64)); in test_alloc_bitmap_128_two_1_nearby_middle()
508 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_full_32()
524 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_full_32()
546 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_full_64()
562 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_full_64()
584 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_full_100()
600 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_full_100()
622 assert_eq!(bitmap.next_false_index(0), None); in test_alloc_bitmap_full_128()
638 assert_eq!(bitmap.next_false_index(0), Some(1)); in test_alloc_bitmap_full_128()