Searched refs:Low (Results 1 - 19 of 19) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
H A DConsole.c214 UINTN Low; local
219 Low = 0;
221 while (Low <= High) {
222 Index = (Low + High) >> 1;
233 Low = Index + 1;
244 if (Low <= High) {
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Library/BaseIoApicLib/
H A DIoApicLib.c94 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2);
96 IoApicWrite (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2, Entry.Uint32.Low);
146 Entry.Uint32.Low = IoApicRead (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2);
153 IoApicWrite (IO_APIC_REDIRECTION_TABLE_ENTRY_INDEX + Irq * 2, Entry.Uint32.Low);
/device/linaro/bootloader/edk2/PcAtChipsetPkg/Include/Register/
H A DIoApic.h78 UINT32 Low; member in struct:__anon9895::__anon9897
/device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DConsole.c211 UINTN Low; local
216 Low = 0;
218 while (Low <= High) {
219 Index = (Low + High) >> 1;
230 Low = Index + 1;
241 if (Low <= High) {
/device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
H A DConsole.c214 UINTN Low; local
219 Low = 0;
221 while (Low <= High) {
222 Index = (Low + High) >> 1;
233 Low = Index + 1;
244 if (Low <= High) {
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
H A DRtc.c178 UINTN Low; local
181 Low = DecValue - (High * 10);
183 return (UINT8) (Low + (High << 4));
192 UINTN Low; local
195 Low = BcdValue - (High << 4);
197 return (UINT8) (Low + (High * 10));
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
H A DPlDebugSupport.h34 UINT64 Low; member in struct:__anon6757
/device/linaro/bootloader/edk2/DuetPkg/BootSector/
H A DGpt.asm130 mov ecx, dword ptr es:[di + 72] ; ECX = PartitionEntryLBA (Low)
132 add eax, ecx ; EAX = Target PartitionEntryLBA (Low)
157 mov eax, dword ptr es:[di + 32] ; EAX = StartingLBA (Low)
192 mov DWORD PTR ds:[si+8],eax ; 08 = Starting LBA (Low)
H A DGpt.S132 movl %es:72(%di), %ecx # ECX = PartitionEntryLBA (Low)
134 addl %ecx, %eax # EAX = Target PartitionEntryLBA (Low)
159 movl %es:32(%di), %eax # EAX = StartingLBA (Low)
194 movl %eax, %ds:8(%si) # 08 = Starting LBA (Low)
/device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/
H A DDebugCommunicationLibUsb3Transfer.c226 UINT32 Low; local
297 Low = XhcReadDebugReg (Handle, XHC_DC_DCERDP);
299 XhcDequeue = (UINT64)(LShiftU64((UINT64)High, 32) | Low);
H A DDebugCommunicationLibUsb3Common.c165 UINT32 Low; local
169 Low = PciRead32 (PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET);
171 XhciMmioBase = (EFI_PHYSICAL_ADDRESS) (LShiftU64 ((UINT64) High, 32) | Low);
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
H A DPrintInfo.c2442 UINT8 Low; local
2454 Low = (UINT8) (BankConnections & 0x0F);
2456 if (Low != 0xF) {
2457 ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_BANK_RAS), gShellDebug1HiiHandle, High, Low, High, Low);
2462 if (Low != 0xF) {
2463 ShellPrintHiiEx(-1,-1,NULL,STRING_TOKEN (STR_SMBIOSVIEW_PRINTINFO_BANK_RAS_2), gShellDebug1HiiHandle, Low, Low);
H A DQueryTable.c149 L" Low Profile Desktop"
3214 Now define Key = 0x7F07, that is to say: High = 0x7F, Low = 0x07.
3215 Then all the Key Value between Low and High gets the same string
3238 // High byte and Low byte of word
3241 UINT8 Low; local
3245 Low = (UINT8) (Table[Index].Key & 0x00FF);
3251 if ((High > Low && Key >= Low && Key <= High)
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeNetLib/
H A DDxeNetLib.c840 UINT64 Low; local
843 CopyMem (&Low, &Ip6->Addr[8], sizeof (UINT64));
846 Low = SwapBytes64 (Low);
848 CopyMem (Ip6, &Low, sizeof (UINT64));
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
H A DXhciSched.c602 UINT32 Low; local
730 Low = XhcPeiReadRuntimeReg (Xhc, XHC_ERDP_OFFSET);
732 XhcDequeue = (UINT64) (LShiftU64((UINT64) High, 32) | Low);
1107 // If the Full/Low device attached to a High Speed Hub, init the TTPortNum and TTHubSlotId field of slot context
1114 // Full/Low device attached to High speed hub port that isolates the high speed signaling
1115 // environment from Full/Low speed signaling environment for a device
1318 //if the Full/Low device attached to a High Speed Hub, Init the TTPortNum and TTHubSlotId field of slot context
1325 // Full/Low device attached to High speed hub port that isolates the high speed signaling
1326 // environment from Full/Low speed signaling environment for a device
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
H A DAsmFuncs.asm2 ; Low leve IA32 specific debug support functions.
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/X64/
H A DAsmFuncs.asm2 ; Low level x64 routines used by the debug support driver.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GuidChk/
H A DGuidChk.c218 BOOLEAN *Low,
1106 // Low: 00FFEEDDCCBBAA99
/device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciDxe/
H A DXhciSched.c1083 UINT32 Low; local
1214 Low = XhcReadRuntimeReg (Xhc, XHC_ERDP_OFFSET);
1216 XhcDequeue = (UINT64)(LShiftU64((UINT64)High, 32) | Low);
2027 //if the Full/Low device attached to a High Speed Hub, Init the TTPortNum and TTHubSlotId field of slot context
2034 // Full/Low device attached to High speed hub port that isolates the high speed signaling
2035 // environment from Full/Low speed signaling environment for a device
2237 //if the Full/Low device attached to a High Speed Hub, Init the TTPortNum and TTHubSlotId field of slot context
2244 // Full/Low device attached to High speed hub port that isolates the high speed signaling
2245 // environment from Full/Low speed signaling environment for a device

Completed in 395 milliseconds