Home | History | Annotate | Download | only in PeiDxePostCodeLibReportStatusCode

Lines Matching refs:PostCode

3   PostCode Library for PEIMs and DXE drivers that send PostCode to ReportStatusCode

27 This macro converts the post code to status code value. Bits 0..4 of PostCode
28 are mapped to bits 16..20 of status code value, and bits 5..7 of PostCode are mapped to bits
31 @param PostCode POST code value.
36 #define POST_CODE_TO_STATUS_CODE_VALUE(PostCode) \
37 ((EFI_STATUS_CODE_VALUE) (((PostCode & 0x1f) << 16) | ((PostCode & 0x3) << 19)))
48 PostCode() must actively prevent recursion. If PostCode() is called while
50 PostCode() must return Value immediately.
59 PostCode (