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

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibDebug/
H A DPostCode.c30 PostCode() must actively prevent recursion. If PostCode() is called while
32 PostCode() must return Value immediately.
41 PostCode ( function
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePostCodeLibPort80/
H A DPostCode.c30 PostCode() must actively prevent recursion. If PostCode() is called while
32 PostCode() must return Value immediately.
41 PostCode ( function
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiDxePostCodeLibReportStatusCode/
H A DPostCode.c3 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() i
59 PostCode ( function
[all...]

Completed in 32 milliseconds