Searched refs:HighestBit (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/FwVol/
H A DFfs.c36 UINT8 HighestBit; local
44 HighestBit = 0x80;
45 while (HighestBit != 0 && ((HighestBit & FileState) == 0)) {
46 HighestBit >>= 1;
49 return (EFI_FFS_FILE_STATE) HighestBit;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
H A DFfs.c57 UINT8 HighestBit; local
65 HighestBit = 0x80;
66 while (HighestBit != 0 && ((HighestBit & FileState) == 0)) {
67 HighestBit >>= 1;
70 return (EFI_FFS_FILE_STATE) HighestBit;
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DFvLib.c837 UINT8 HighestBit; local
845 HighestBit = 0x80;
846 while (HighestBit != 0 && (HighestBit & FileState) == 0) {
847 HighestBit >>= 1;
850 return HighestBit;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/FwVol/
H A DFwVol.c120 EFI_FFS_FILE_STATE HighestBit; local
131 HighestBit = 0x80;
132 while (HighestBit != 0 && (HighestBit & FileState) == 0) {
133 HighestBit >>= 1;
136 return HighestBit;

Completed in 55 milliseconds