HomeSort by: relevance | last modified time | path
    Searched defs:High (Results 1 - 21 of 21) sorted by relevancy

  /src/sys/external/bsd/gnu-efi/dist/lib/runtime/
rtstr.c 207 UINTN High, Low;
209 High = BcdValue >> 4;
210 Low = BcdValue - (High << 4);
212 return ((UINT8)(Low + (High * 10)));
225 UINTN High, Low;
227 High = DecValue / 10;
228 Low = DecValue - (High * 10);
230 return ((UINT8)(Low + (High << 4)));
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
InlineAsm.h 294 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
309 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
319 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
357 unsigned High = Flag >> 16;
360 if (!High)
362 RC = High - 1;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
SwitchLoweringUtils.cpp 27 const APInt &HighCase = Clusters[Last].High->getValue();
57 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue()));
75 const APInt &Hi = Clusters[i].High->getValue();
210 const APInt &High = Clusters[I].High->getValue();
211 NumCmps += (Low == High) ? 1 : 2;
214 const APInt &PreviousHigh = Clusters[I - 1].High->getValue();
220 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1;
229 Clusters[Last].High->getValue(), *DL)) {
256 Clusters[Last].High->getValue(), SI->getCondition()
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
SwitchLoweringUtils.h 44 const ConstantInt *Low, *High;
52 static CaseCluster range(const ConstantInt *Low, const ConstantInt *High,
57 C.High = High;
63 static CaseCluster jumpTable(const ConstantInt *Low, const ConstantInt *High,
68 C.High = High;
74 static CaseCluster bitTests(const ConstantInt *Low, const ConstantInt *High,
79 C.High = High;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/IR/
IntrinsicInst.cpp 157 const char *const *High = NameTable.end();
159 while (CmpEnd < Name.size() && High - Low > 0) {
167 std::tie(Low, High) = std::equal_range(Low, High, Name.data(), Cmp);
169 if (High - Low > 0)
AutoUpgrade.cpp 2603 // Mask off the high bits of the immediate value; hardware ignores those.
2648 // Mask off the high bits of the immediate value; hardware ignores those.
2686 // [5:4] - select 128 bits from sources for high half of destination
2688 // [7] - zero high half of destination
2709 // Permute high half of result.
3470 bool High = Name[20] == 'h' || Name[21] == 'h';
3473 if (VecWidth == 128 && !High)
3475 else if (VecWidth == 256 && !High)
3477 else if (VecWidth == 512 && !High)
3479 else if (VecWidth == 128 && High)
    [all...]
Verifier.cpp 3686 ConstantInt *High =
3688 Assert(High, "The upper limit must be an integer!", High);
3689 Assert(High->getType() == Low->getType() && High->getType() == Ty,
3692 APInt HighV = High->getValue();
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.cpp 463 unsigned High = RI->getSubReg(MO1.getReg(), Hexagon::isub_hi);
466 TmpInst.addOperand(MCOperand::createReg(High));
540 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
542 MO.setReg(High);
552 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
554 MO.setReg(High);
566 unsigned High = RI->getSubReg(MO.getReg(), Hexagon::isub_hi);
568 MO.setReg(High);
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Diagnostic.cpp 665 unsigned High = PluralNumber(Start, End);
668 return Low <= Val && Val <= High;
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFStreamer.cpp 459 uint64_t High = Data.getUnsigned(&Offset, AddressSize);
462 if (Low == 0 && High == 0) {
470 Asm->OutStreamer->emitIntValue(High + Attr.second, AddressSize);
476 Asm->OutStreamer->emitIntValue(High + LocPcOffset, AddressSize);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 55 int64_t Low, High;
65 // Find the first range whose High field is >= R.High,
69 Ranges, R, [](IntRange A, IntRange B) { return A.High < B.High; });
75 ConstantInt *High;
78 CaseRange(ConstantInt *low, ConstantInt *high, BasicBlock *bb)
79 : Low(low), High(high), BB(bb) {}
90 const ConstantInt *CI2 = cast<const ConstantInt>(C2.High);
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopAccessAnalysis.h 357 const SCEV *High;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 378 unsigned High = (OC[Offset] & 0x7);
379 uint32_t VFPMask = (((1 << (High + 1)) - 1) << 8);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 394 SDValue High = DAG.getLoad(PtrVT, DL, Chain, HighAddr, MachinePointerInfo());
396 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High, HighShift);
399 High.getValue(1));
451 SDValue High =
455 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High,
459 High.getValue(1));
502 SDValue High = DAG.getNode(ISD::SRL, dl, MVT::i32, Value,
510 Chain, dl, High, HighAddr, ST->getPointerInfo().getWithOffset(2),
1601 // These instructions ignore the high bits.
1617 // This instruction ignores the high bits
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
IRTranslator.cpp 719 if (C.Low != C.High) {
721 C.High->getValue().print(dbgs(), true);
850 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
860 auto Diff = MIB.buildConstant(CmpTy, High - Low);
968 if (I->Low == I->High) {
975 // Check I->Low <= Cond <= I->High.
979 RHS = I->High;
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExpr.cpp 646 llvm::Value *High) {
649 llvm::Value *A0 = Builder.CreateMul(Builder.CreateXor(Low, High), KMul);
651 llvm::Value *B0 = Builder.CreateMul(Builder.CreateXor(High, A1), KMul);
839 llvm::Value *High = Builder.CreateZExt(VPtrVal, Int64Ty);
841 llvm::Value *Hash = emitHash16Bytes(Builder, Low, High);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 4596 APInt High = readWideAPInt(
4604 for ( ; Low.ule(High); ++Low)
5955 assert(!(Val >> 32) && "Unexpected high bits set");
6622 assert(!(Val >> 32) && "Unexpected high bits set");
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZISelLowering.cpp 1015 case 'h': // High-part register
1059 case 'h': // High-part register
1148 case 'h': // High-part register (an LLVM extension)
2110 // Test whether the high bit of the byte is set.
2113 // Test whether the high bit of the byte is clear.
2354 uint64_t High = uint64_t(1) << HighShift;
2402 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) {
2408 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 145 // MaxParallelChains default is arbitrarily high to avoid affecting
2482 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue();
2488 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, dl, VT),
2494 DAG.getConstant(High-Low, dl, VT), ISD::SETULE);
2624 /// For a high level explanation of how this fits into the stack protector
2717 /// For a high level explanation of how this fits into the stack protector
3884 // We intentionally mask away the high bits here; ElementSize may not
10505 if (Small.Low == Small.High && Big.Low == Big.High &&
10683 if (I->Low == I->High) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
ARMISelLowering.cpp 3213 // and pass the lower and high parts through.
4718 // We generate a UMUL_LOHI and then check if the high word is 0.
4728 // We generate a SMUL_LOHI and then check if all the bits of the high word
4993 SDValue High = DAG.getNode(ARMISD::CMOV, dl, MVT::i32, FalseHigh, TrueHigh,
4996 return DAG.getNode(ARMISD::VMOVDRR, dl, MVT::f64, Low, High);
5800 // f64: Or the high part with signbit and then combine two parts.
6999 // want to check the low half and high half of the shuffle mask as if it were
12245 // Figure out the high and low input values to the MLAL node.
12250 // Ensure that ADDE/SUBE is from high result of ISD::xMUL_LOHI.
15621 // long as the bitwidth is high enough to make them equivalent (for exampl
    [all...]
  /src/sys/dev/ic/
mpt_mpilib.h 97 S32 High;
103 U32 High;

Completed in 129 milliseconds