Home | History | Annotate | Download | only in SmmRuntimeDxeReportStatusCodeLibFramework

Lines Matching refs:PostCode

21   and returns the 8-bit POST code in PostCode.  If CodeType is an

22 EFI_PROGRESS_CODE or CodeType is an EFI_ERROR_CODE, then bits 0..4 of PostCode
23 are set to bits 16..20 of Value, and bits 5..7 of PostCode are set to bits
26 If PostCode is NULL, then ASSERT().
30 @param PostCode A pointer to the 8-bit POST code value to return.
33 to an 8-bit POST code and returned in PostCode.
43 OUT UINT8 *PostCode
47 // If PostCode is NULL, then ASSERT()
49 ASSERT (PostCode != NULL);
56 *PostCode = (UINT8) ((((Value & EFI_STATUS_CODE_CLASS_MASK) >> 24) << 5) |