Searched defs:Low (Results 1 - 25 of 41) sorted by relevance

12

/external/llvm/lib/IR/
H A DIntrinsicInst.cpp62 const char *const *Low = NameTable.begin(); local
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/
H A Drtstr.c114 UINTN High, Low; local
117 Low = BcdValue - (High << 4);
119 return ((UINT8)(Low + (High * 10)));
132 UINTN High, Low; local
135 Low = DecValue - (High * 10);
137 return ((UINT8)(Low + (High << 4)));
/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp88 void CountInRangeImpl(int *NumInRange, int Low, int High, argument
92 if (Low <= *Args[i] && *Args[i] <= High)
/external/llvm/lib/Target/NVPTX/
H A DNVVMIntrRange.cpp65 // Adds the passed-in [Low,High) range information as metadata to the
67 static bool addRangeMetadata(uint64_t Low, uint64_t High, CallInst *C) { argument
71 ConstantAsMetadata::get(ConstantInt::get(Int32Ty, Low)),
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs11 public UInt64 Low; field in class:SevenZip.Compression.RangeCoder.Encoder
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
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DEncoder.java14 long Low; field in class:Encoder
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/lzma/C/
H A D7z.h71 UInt32 Low; member in struct:__anon13985
H A DPpmd7.h126 UInt64 Low; member in struct:__anon14038
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h21 UInt64 Low; member in class:NCompress::NRangeCoder::CEncoder
30 Low = 0;
38 // Low += 1;
47 Low += start * (Range /= total);
58 if ((UInt32)Low < (UInt32)0xFF000000 || (unsigned)(Low >> 32) != 0)
63 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
67 _cache = (Byte)((UInt32)Low >> 24);
70 Low = (UInt32)Low <<
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerSwitch.cpp50 Constant* Low; member in struct:__anon18996::LowerSwitch::CaseRange
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");
192 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
196 } else if (cast<ConstantInt>(Leaf.Low)
[all...]
/external/gemmlowp/meta/generators/
H A Dneon_emitter.py30 def Low(register): function
93 def Low(self, register): member in class:NeonRegisters
94 return Low(register)
/external/llvm/lib/Target/Hexagon/
H A DHexagonAsmPrinter.cpp414 unsigned Low = RI->getSubReg(MO1.getReg(), Hexagon::subreg_loreg); local
417 TmpInst.addOperand(MCOperand::createReg(Low));
502 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
505 MappedInst.addOperand(MCOperand::createReg(Low));
514 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
517 MappedInst.addOperand(MCOperand::createReg(Low));
527 unsigned Low = RI->getSubReg(MO.getReg(), Hexagon::subreg_loreg); local
530 MappedInst.addOperand(MCOperand::createReg(Low));
/external/swiftshader/third_party/LLVM/lib/CodeGen/
H A DRenderMachineFunction.h261 typedef enum { Zero, Low, High } PressureState; enumerator in enum:llvm::RenderMachineFunction::__anon18563
/external/llvm/include/llvm/Support/
H A DMathExtras.h259 inline uint64_t Make_64(uint32_t High, uint32_t Low) { argument
260 return ((uint64_t)High << 32) | (uint64_t)Low;
/external/llvm/lib/Transforms/IPO/
H A DArgumentPromotion.cpp405 std::set<IndicesVector>::iterator Low; local
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; local
425 Low = Safe.upper_bound(ToMark);
427 if (Low !
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp36 int64_t Low, High; member in struct:__anon13437::IntRange
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; member in struct:__anon13437::LowerSwitch::CaseRange
68 : Low(low), High(high), BB(bb) {}
92 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
145 O << *B->Low << " -" << *B->High;
212 if (Begin->Low
440 int64_t Low = I.Low->getSExtValue(); local
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DArgumentPromotion.cpp258 std::set<ArgPromotion::IndicesVector>::iterator Low; local
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; local
278 Low = Safe.upper_bound(ToMark);
280 if (Low !
[all...]
/external/clang/lib/Basic/
H A DDiagnostic.cpp515 unsigned Low = PluralNumber(Start, End); local
521 return Low <= Val && Val <= High;
/external/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h387 Low(RtCheck.Pointers[Index].Start) {
407 const SCEV *Low; member in struct:llvm::RuntimePointerChecking::CheckingPtrGroup
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h132 Constant* Low; member in struct:llvm::SelectionDAGBuilder::Case
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
139 uint32_t extraweight) : Low(low), High(high), BB(bb),
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
187 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h151 const ConstantInt *Low, *High; member in struct:llvm::SelectionDAGBuilder::CaseCluster
159 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High, argument
163 C.Low = Low;
170 static CaseCluster jumpTable(const ConstantInt *Low, argument
175 C.Low = Low;
182 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High, argument
186 C.Low = Low;
[all...]
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelDAGToDAG.cpp999 uint32_t Low = (Imm + 1) & 4095; local
1000 Imm = Low;
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1892 uint64_t Low = uint64_t(1) << countTrailingZeros(Mask); local
1905 if (EffectivelyUnsigned && CmpVal > 0 && CmpVal <= Low) {
1911 if (EffectivelyUnsigned && CmpVal < Low) {
1925 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) {
1931 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) {
1952 // If there are just two bits, we can do equality checks for Low and High
1954 if (Mask == Low + High) {
1955 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low)
1957 if (CCMask == SystemZ::CCMASK_CMP_NE && CmpVal == Low)
3044 unsigned High, Low;
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp398 SDValue Low = DAG.getLoad(PtrVT, DL, Chain, LowAddr, MachinePointerInfo(), local
402 SDValue LowShifted = DAG.getNode(ISD::SRL, DL, MVT::i32, Low, LowShift);
405 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
461 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain, local
474 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, Low, HighShifted);
475 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
525 SDValue Low = Value; local
528 SDValue StoreLow = DAG.getTruncStore(Chain, dl, Low, BasePtr,
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp939 APInt Low = APInt::getLowBitsSet(BigBitSize, SmallBitSize); local
940 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
941 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());

Completed in 3040 milliseconds

12