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

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciDxe/
H A DEhciReg.c171 @param Bit The bit mask of the register to set.
178 IN UINT32 Bit
184 Data |= Bit;
194 @param Bit The bit mask of the register to clear.
201 IN UINT32 Bit
207 Data &= ~Bit;
213 Wait the operation register's bit as specified by Bit
218 @param Bit The bit of the register to wait for.
230 IN UINT32 Bit,
238 if (EHC_REG_BIT_IS_SET (Ehc, Offset, Bit)
227 EhcWaitOpRegBit( IN USB2_HC_DEV *Ehc, IN UINT32 Offset, IN UINT32 Bit, IN BOOLEAN WaitToSet, IN UINT32 Timeout ) argument
[all...]
H A DUsbHcMem.c168 UINT8 Bit; local
180 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
186 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
193 NEXT_BIT (Byte, Bit);
196 NEXT_BIT (Byte, Bit);
200 StartBit = Bit;
212 Bit = StartBit;
215 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
217 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] | USB_HC_BIT (Bit));
218 NEXT_BIT (Byte, Bit);
517 UINTN Bit; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/EhciPei/
H A DUsbHcMem.c142 UINT8 Bit; local
154 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
160 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
167 NEXT_BIT (Byte, Bit);
170 NEXT_BIT (Byte, Bit);
174 StartBit = Bit;
186 Bit = StartBit;
189 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
191 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] | (UINT8) USB_HC_BIT (Bit));
192 NEXT_BIT (Byte, Bit);
445 UINTN Bit; local
[all...]
H A DEhcPeim.c91 @param Bit The bit mask of the register to set.
98 IN UINT32 Bit
104 Data |= Bit;
113 @param Bit The bit mask of the register to clear.
120 IN UINT32 Bit
126 Data &= ~Bit;
131 Wait the operation register's bit as specified by Bit
136 @param Bit The bit mask of the register to wait for.
148 IN UINT32 Bit,
156 if (EHC_REG_BIT_IS_SET (Ehc, Offset, Bit)
145 EhcWaitOpRegBit( IN PEI_USB2_HC_DEV *Ehc, IN UINT32 Offset, IN UINT32 Bit, IN BOOLEAN WaitToSet, IN UINT32 Timeout ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/UhciDxe/
H A DUsbHcMem.c167 UINT8 Bit; local
179 for (Byte = 0, Bit = 0; Byte < Block->BitsLen;) {
185 if (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit)) {
192 NEXT_BIT (Byte, Bit);
195 NEXT_BIT (Byte, Bit);
199 StartBit = Bit;
211 Bit = StartBit;
214 ASSERT (!USB_HC_BIT_IS_SET (Block->Bits[Byte], Bit));
216 Block->Bits[Byte] = (UINT8) (Block->Bits[Byte] | (UINT8) USB_HC_BIT (Bit));
217 NEXT_BIT (Byte, Bit);
515 UINTN Bit; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhciReg.c410 @param Bit The bit mask of the register to set.
417 IN UINT32 Bit
423 Data |= Bit;
432 @param Bit The bit mask of the register to set.
439 IN UINT32 Bit
445 Data &= ~Bit;
454 @param Bit The bit mask of the register to set.
461 IN UINT32 Bit
467 Data |= Bit;
477 @param Bit Th
509 XhcWaitOpRegBit( IN USB_XHCI_INSTANCE *Xhc, IN UINT32 Offset, IN UINT32 Bit, IN BOOLEAN WaitToSet, IN UINT32 Timeout ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Ip6Dxe/
H A DIp6Icmp.c471 UINT8 Bit; local
487 Bit = (UINT8) (PrefixLength % 8);
494 if (Bit > 0) {
495 Mask = (UINT8) (0xFF << (8 - Bit));
H A DIp6Common.c588 UINT8 Bit; local
595 Bit = (UINT8) (PrefixLength % 8);
601 if (Bit > 0) {
602 Mask = (UINT8) (0xFF << (8 - Bit));
/vbox/src/VBox/Devices/EFI/Firmware/OptionRomPkg/CirrusLogic5430Dxe/
H A DCirrusLogic5430I2c.c94 UINT8 Bit
98 return (UINT8) ((I2cInb (PciIo, SEQ_DATA_REGISTER) >> Bit ) & 0xfe);
113 UINT8 Bit,
119 Byte = (UINT8) (I2cInb (PciIo, SEQ_DATA_REGISTER) & (UINT8) ~(1 << Bit)) ;
120 Byte = (UINT8) (Byte | ((Value & 0x01) << Bit));
111 I2cPinWrite( EFI_PCI_IO_PROTOCOL *PciIo, UINT8 Bit, UINT8 Value ) argument
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVgaDxe/
H A DVBoxVgaI2c.c122 UINT8 Bit
126 return (UINT8) ((I2cInb (PciIo, SEQ_DATA_REGISTER) >> Bit ) & 0xfe);
141 UINT8 Bit,
147 Byte = (UINT8) (I2cInb (PciIo, SEQ_DATA_REGISTER) & (UINT8) ~(1 << Bit)) ;
148 Byte = (UINT8) (Byte | ((Value & 0x01) << Bit));
139 I2cPinWrite( EFI_PCI_IO_PROTOCOL *PciIo, UINT8 Bit, UINT8 Value ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbBusDxe/
H A DUsbEnumer.c955 UINT8 Bit; local
970 Bit = 1;
973 if (USB_BIT_IS_SET (HubIf->ChangeMap[Byte], USB_BIT (Bit))) {
977 USB_NEXT_BIT (Byte, Bit);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
H A DBootMaint.c281 UINTN Bit; local
371 Bit = 7 - (OldValue % 8);
372 DisMap[Pos] = (UINT8) (DisMap[Pos] | (UINT8) (1 << Bit));
414 Bit = 7 - (NewValue % 8);
415 DisMap[Pos] = (UINT8) (DisMap[Pos] & (~ (UINT8) (1 << Bit)));
423 Bit = 7 - (OldValue % 8);
424 DisMap[Pos] = (UINT8) (DisMap[Pos] | (UINT8) (1 << Bit));
H A DUpdatePage.c1262 UINTN Bit; local
1431 Bit = 7 - ((VarDevOrder & 0xFF) % 8);
1432 DisMap[Pos] = (UINT8) (DisMap[Pos] | (UINT8) (1 << Bit));
H A DVariable.c1104 UINTN Bit; local
1205 Bit = 7 - (Tmp % 8);
1206 if ((DisMap[Pos] & (1 << Bit)) != 0) {
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/BiosThunk/VideoDxe/
H A DBiosVideo.c2633 UINTN Bit; local
2638 for (Bit = 0x01, Color = 0; Bit < 0x10; Bit <<= 1, MemoryBuffer += VGA_BYTES_PER_BIT_PLANE) {
2640 Color |= Bit;
2717 UINTN Bit; local
2822 // Convert VGA Bit Planes to a Graphics Output 32-bit color value
3045 for (Bit = 0; Bit < 8; Bit
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c795 UINT8 Bit; local
805 Bit = (UINT8) (PrefixLength % 8);
811 if (Bit > 0) {
812 Mask = (UINT8) (0xFF << (8 - Bit));

Completed in 135 milliseconds