Searched defs:HighCount (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/MonotonicCounterRuntimeDxe/
H A DMonotonicCounter.c125 @param HighCount Pointer to returned value.
128 @retval EFI_INVALID_PARAMETER HighCount is NULL.
137 OUT UINT32 *HighCount
145 if (HighCount == NULL) {
154 *HighCount = (UINT32) RShiftU64 (mEfiMtc, 32) + 1;
155 mEfiMtc = LShiftU64 (*HighCount, 32);
158 *HighCount = (UINT32) RShiftU64 (mEfiMtc, 32) + 1;
159 mEfiMtc = LShiftU64 (*HighCount, 32);
169 HighCount
188 UINT32 HighCount; local
210 UINT32 HighCount; local
[all...]

Completed in 47 milliseconds