Check bit 0 - only valid for standard clusters.
(l2_entry: u64)
| 28 | |
| 29 | /// Check bit 0 - only valid for standard clusters. |
| 30 | pub(super) fn l2_entry_is_zero(l2_entry: u64) -> bool { |
| 31 | l2_entry & ZERO_FLAG != 0 |
| 32 | } |
| 33 | |
| 34 | /// Check if L2 entry refers to a compressed cluster. |
| 35 | pub(super) fn l2_entry_is_compressed(l2_entry: u64) -> bool { |
no outgoing calls
no test coverage detected