Lines Matching refs:MemoryLength
796 Calculates the maximum value which is a power of 2, but less the MemoryLength.
798 @param[in] MemoryLength The number to pass in.
800 @return The maximum value which is align to power of 2 and less the MemoryLength
805 IN UINT64 MemoryLength
810 if (RShiftU64 (MemoryLength, 32) != 0) {
813 (UINT32) RShiftU64 (MemoryLength, 32)
818 Result = (UINT64) GetPowerOfTwo32 ((UINT32) MemoryLength);