Check if L2 entry is empty (unallocated).
(l2_entry: u64)
| 23 | |
| 24 | /// Check if L2 entry is empty (unallocated). |
| 25 | pub(super) fn l2_entry_is_empty(l2_entry: u64) -> bool { |
| 26 | l2_entry == 0 |
| 27 | } |
| 28 | |
| 29 | /// Check bit 0 - only valid for standard clusters. |
| 30 | pub(super) fn l2_entry_is_zero(l2_entry: u64) -> bool { |
no outgoing calls
no test coverage detected