Searched refs:first_index (Results 1 – 8 of 8) sorted by relevance
/DragonOS/kernel/crates/bitmap/tests/ |
H A D | static-bitmap.rs | 16 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_32() 29 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_32() 46 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_64() 59 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_64() 78 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_first_1() 97 assert_eq!(bitmap.first_index(), Some(1)); in test_static_bitmap_32_first_1() 119 assert_eq!(bitmap.first_index(), Some(15)); in test_static_bitmap_32_middle_1() 139 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_middle_1() 161 assert_eq!(bitmap.first_index(), Some(31)); in test_static_bitmap_32_last_1() 181 assert_eq!(bitmap.first_index(), Some(0)); in test_static_bitmap_32_last_1() [all …]
|
H A D | alloc-bitmap.rs | 16 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_32() 29 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_32() 46 assert_eq!(bitmap.first_index(), None); in test_empty_bitmap_64() 59 assert_eq!(bitmap.first_index(), Some(0)); in test_empty_bitmap_64() 78 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_first_1() 97 assert_eq!(bitmap.first_index(), Some(1)); in test_alloc_bitmap_32_first_1() 119 assert_eq!(bitmap.first_index(), Some(15)); in test_alloc_bitmap_32_middle_1() 139 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_middle_1() 161 assert_eq!(bitmap.first_index(), Some(31)); in test_alloc_bitmap_32_last_1() 181 assert_eq!(bitmap.first_index(), Some(0)); in test_alloc_bitmap_32_last_1() [all …]
|
/DragonOS/kernel/crates/bitmap/src/ |
H A D | alloc_bitmap.rs | 53 fn first_index(&self) -> Option<usize> { in first_index() method 54 self.core.first_index(&self.data) in first_index()
|
H A D | static_bitmap.rs | 64 fn first_index(&self) -> Option<usize> { in first_index() function 65 self.core.first_index(&self.data) in first_index()
|
H A D | traits.rs | 11 fn first_index(bits: &Self) -> Option<usize>; in first_index() method 60 fn first_index(bits: &Self) -> Option<usize> { 260 fn first_index(&self) -> Option<usize>; in first_index() method
|
H A D | bitmap_core.rs | 61 pub(crate) fn first_index(&self, data: &[T]) -> Option<usize> { in first_index() method 63 let bit = <T as BitOps>::first_index(element); in first_index() 140 if let Some(bit) = <T as BitOps>::first_index(element) { in next_index()
|
/DragonOS/kernel/src/libs/ |
H A D | cpumask.rs | 37 .first_index() in first()
|
/DragonOS/kernel/src/driver/tty/tty_ldisc/ |
H A D | ntty.rs | 1035 let ret = self.read_flags.first_index(); in canon_copy_from_read_buf()
|