| 688 | // E.g.: MaskHigh<char>(3) -> 0b11100000: |
| 689 | template <typename T> |
| 690 | constexpr T MaskHigh(unsigned char SignificantBits) |
| 691 | { |
| 692 | return MaskLow<T>(SignificantBits) << ((sizeof(T) * 8) - SignificantBits); |
| 693 | } |
| 694 | |
| 695 | static void InitMtrr(__out MTRR_INFO* MtrrInfo) |
| 696 | { |
nothing calls this directly
no outgoing calls
no test coverage detected