HomeSort by relevance Sort by last modified time
    Searched defs:Low (Results 1 - 25 of 69) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ipf/
PlDebugSupport.h 34 UINT64 Low;
  /external/llvm/lib/IR/
IntrinsicInst.cpp 62 const char *const *Low = NameTable.begin();
64 const char *const *LastLow = Low;
65 while (CmpEnd < Name.size() && High - Low > 0) {
72 LastLow = Low;
73 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp);
75 if (High - Low > 0)
76 LastLow = Low;
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/runtime/
rtstr.c 114 UINTN High, Low;
117 Low = BcdValue - (High << 4);
119 return ((UINT8)(Low + (High * 10)));
132 UINTN High, Low;
135 Low = DecValue - (High * 10);
137 return ((UINT8)(Low + (High << 4)));
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
Console.c 214 UINTN Low;
219 Low = 0;
221 while (Low <= High) {
222 Index = (Low + High) >> 1;
233 Low = Index + 1;
244 if (Low <= High) {
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
Console.c 211 UINTN Low;
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/
Console.c 214 UINTN Low;
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/Include/Register/
IoApic.h 78 UINT32 Low;
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugCommunicationLibUsb3/
DebugCommunicationLibUsb3Transfer.c 226 UINT32 Low;
297 Low = XhcReadDebugReg (Handle, XHC_DC_DCERDP);
299 XhcDequeue = (UINT64)(LShiftU64((UINT64)High, 32) | Low);
DebugCommunicationLibUsb3Common.c 165 UINT32 Low;
169 Low = PciRead32 (PcdGet32(PcdUsbXhciPciAddress) + PCI_BASE_ADDRESSREG_OFFSET);
171 XhciMmioBase = (EFI_PHYSICAL_ADDRESS) (LShiftU64 ((UINT64) High, 32) | Low);
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoder.cs 11 public UInt64 Low;
32 Low = 0;
56 Low += start * (Range /= total);
67 if ((uint)Low < (uint)0xFF000000 || (uint)(Low >> 32) == 1)
72 Stream.WriteByte((byte)(temp + (Low >> 32)));
76 _cache = (byte)(((uint)Low) >> 24);
79 Low = ((uint)Low) << 8;
88 Low += Range;
    [all...]
  /external/lzma/Java/SevenZip/Compression/RangeCoder/
Encoder.java 14 long Low;
34 Low = 0;
53 int LowHi = (int)(Low >>> 32);
54 if (LowHi != 0 || Low < 0xFF000000L)
64 _cache = (((int)Low) >>> 24);
67 Low = (Low & 0xFFFFFF) << 8;
76 Low += Range;
113 Low += (newBound & 0xFFFFFFFFL);
  /external/swiftshader/third_party/subzero/src/
IceSwitchLowering.h 44 : Kind(Range), Low(Value), High(Value), Target(Target) {}
46 CaseCluster(uint64_t Low, uint64_t High, InstJumpTable *JT)
47 : Kind(JumpTable), Low(Low), High(High), JT(JT) {}
50 uint64_t getLow() const { return Low; }
61 bool isUnitRange() const { return Low == High; }
62 bool isPairRange() const { return Low == High - 1; }
70 uint64_t Low;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
windows.system.threading.h 101 Low = -1,
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/
PrintInfo.c     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.cpp 414 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::subreg_loreg);
417 TmpInst.addOperand(MCOperand::createReg(Low));
502 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg);
505 MappedInst.addOperand(MCOperand::createReg(Low));
514 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg);
517 MappedInst.addOperand(MCOperand::createReg(Low));
527 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg);
530 MappedInst.addOperand(MCOperand::createReg(Low));
  /external/lzma/C/
7z.h 58 UInt32 Low;
Ppmd7.h 126 UInt64 Low;
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
LowerSwitch.cpp 50 Constant* Low;
54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) :
55 Low(low), High(high), BB(bb) { }
76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
120 O << *B->Low << " -" << *B->High;
147 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
163 Val, Pivot.Low, "Pivot");
186 if (Leaf.Low == Leaf.High) {
189 Leaf.Low, "SwitchLeaf")
    [all...]
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 36 int64_t Low, High;
44 // then check if the Low field is <= R.Low. If so, we
49 return I != Ranges.end() && I->Low <= R.Low;
63 ConstantInt* Low;
67 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb)
68 : Low(low), High(high), BB(bb) {}
92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
RenderMachineFunction.h 261 typedef enum { Zero, Low, High } PressureState;
  /external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
ArgumentPromotion.cpp 258 std::set<ArgPromotion::IndicesVector>::iterator Low;
259 Low = Set.upper_bound(Indices);
260 if (Low != Set.begin())
261 Low--;
262 // Low is now the last element smaller than or equal to Indices. This means
267 return Low != Set.end() && IsPrefix(*Low, Indices);
277 std::set<ArgPromotion::IndicesVector>::iterator Low;
278 Low = Safe.upper_bound(ToMark);
280 if (Low != Safe.begin()
    [all...]
  /device/linaro/bootloader/edk2/EmbeddedPkg/Library/HalRuntimeServicesExampleLib/
Rtc.c 178 UINTN Low;
181 Low = DecValue - (High * 10);
183 return (UINT8) (Low + (High << 4));
192 UINTN Low;
195 Low = BcdValue - (High << 4);
197 return (UINT8) (Low + (High * 10));
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/XhciPei/
XhciSched.c 602 UINT32 Low;
730 Low = XhcPeiReadRuntimeReg (Xhc, XHC_ERDP_OFFSET);
732 XhcDequeue = (UINT64) (LShiftU64((UINT64) High, 32) | Low);
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 515 unsigned Low = PluralNumber(Start, End);
521 return Low <= Val && Val <= High;
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 405 std::set<IndicesVector>::iterator Low;
406 Low = Set.upper_bound(Indices);
407 if (Low != Set.begin())
408 Low--;
409 // Low is now the last element smaller than or equal to Indices. This means
414 return Low != Set.end() && IsPrefix(*Low, Indices);
424 std::set<IndicesVector>::iterator Low;
425 Low = Safe.upper_bound(ToMark);
427 if (Low != Safe.begin()
    [all...]

Completed in 574 milliseconds

1 2 3