| /openbsd-src/gnu/usr.bin/perl/lib/unicore/auxiliary/ |
| H A D | SBTest.txt | 35 ÷ 0001 × 0061 ÷ # ÷ [0.2] <START OF HEADING> (Other) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 36 …ING> (Other) × [5.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 65 ÷ 000D ÷ 0061 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 66 …N (CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 95 ÷ 000A ÷ 0061 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 96 …D (LF)> (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 125 ÷ 0085 ÷ 0061 ÷ # ÷ [0.2] <NEXT LINE (NEL)> (Sep) ÷ [4.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 126 …(NEL)> (Sep) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] 155 ÷ 0009 × 0061 ÷ # ÷ [0.2] <CHARACTER TABULATION> (Sp) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.… 156 …LATION> (Sp) × [5.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN SMALL LETTER A (Lower) ÷ [0.3] [all …]
|
| H A D | SentenceBreakProperty.txt | 622 0061..007A ; Lower # L& [26] LATIN SMALL LETTER A..LATIN SMALL LETTER Z 623 00AA ; Lower # Lo FEMININE ORDINAL INDICATOR 624 00B5 ; Lower # L& MICRO SIGN 625 00BA ; Lower # Lo MASCULINE ORDINAL INDICATOR 626 00DF..00F6 ; Lower # L& [24] LATIN SMALL LETTER SHARP S..LATIN SMALL LETTER O WITH DIAERESIS 627 00F8..00FF ; Lower # L& [8] LATIN SMALL LETTER O WITH STROKE..LATIN SMALL LETTER Y WITH DIAERE… 628 0101 ; Lower # L& LATIN SMALL LETTER A WITH MACRON 629 0103 ; Lower # L& LATIN SMALL LETTER A WITH BREVE 630 0105 ; Lower # L& LATIN SMALL LETTER A WITH OGONEK 631 0107 ; Lower # L& LATIN SMALL LETTER C WITH ACUTE [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 45 : Lower(Full ? APInt::getMaxValue(BitWidth) : APInt::getMinValue(BitWidth)), in ConstantRange() 46 Upper(Lower) {} in ConstantRange() 49 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange() 52 : Lower(std::move(L)), Upper(std::move(U)) { in ConstantRange() 53 assert(Lower.getBitWidth() == Upper.getBitWidth() && in ConstantRange() 55 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange() 73 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() local 74 Lower.setSignBit(); in fromKnownBits() 76 return ConstantRange(Lower, Upper + 1); in fromKnownBits() 273 APInt Lower, Upper; in makeExactMulNSWRegion() local [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | ConstantRange.h | 48 APInt Lower, Upper; variable 70 ConstantRange(APInt Lower, APInt Upper); 84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { in getNonEmpty() argument 85 if (Lower == Upper) in getNonEmpty() 86 return getFull(Lower.getBitWidth()); in getNonEmpty() 87 return ConstantRange(std::move(Lower), std::move(Upper)); in getNonEmpty() 198 const APInt &getLower() const { return Lower; } in getLower() 204 uint32_t getBitWidth() const { return Lower.getBitWidth(); } in getBitWidth() 247 if (Upper == Lower + 1) in getSingleElement() 248 return &Lower; in getSingleElement() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | UnicodeCharRanges.h | 24 uint32_t Lower; member 29 return Value < Range.Lower; 75 if (I != Ranges.begin() && Prev >= I->Lower) { in rangesAreValid() 79 LLVM_DEBUG(dbgs().write_hex(I->Lower) << "\n"); in rangesAreValid() 82 if (I->Upper < I->Lower) { in rangesAreValid() 84 LLVM_DEBUG(dbgs().write_hex(I->Lower)); in rangesAreValid()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.h | 26 LVAddress Lower = 0; variable 35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry() 37 RangeType lower() const { return Lower; } in lower() 57 LVAddress Lower = MaxAddress; variable 71 LVAddress getLower() const { return Lower; } in getLower() 78 Lower = MaxAddress; in clear()
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 33 uint64_t Upper = P1, Lower = P4; in multiply64() local 35 uint64_t NewLower = Lower + (getL(N) << 32); in multiply64() 36 Upper += getU(N) + (NewLower < Lower); in multiply64() 37 Lower = NewLower; in multiply64() 44 return std::make_pair(Lower, 0); in multiply64() 50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64() 52 Shift && (Lower & UINT64_C(1) << (Shift - 1))); in multiply64()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| H A D | SystemZAsmPrinter.cpp | 149 SystemZMCInstLower Lower(MF->getContext(), *this); in emitInstruction() local 256 .addExpr(Lower.getExpr(MI->getOperand(0), in emitInstruction() 278 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 289 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 296 .addExpr(Lower.getExpr(MI->getOperand(2), MCSymbolRefExpr::VK_PLT)); in emitInstruction() 387 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_TLSGD)); in emitInstruction() 394 .addExpr(Lower.getExpr(MI->getOperand(0), MCSymbolRefExpr::VK_TLSLDM)); in emitInstruction() 440 Lower.lower(MI, LoweredMI); in emitInstruction() 445 Lower.lower(MI, LoweredMI); in emitInstruction() 450 Lower.lower(MI, LoweredMI); in emitInstruction() [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/fuzzer/ |
| H A D | FuzzerCorpus.h | 56 auto Lower = std::lower_bound(FeatureFreqs.begin(), FeatureFreqs.end(), in DeleteFeatureFreq() local 59 if (Lower != FeatureFreqs.end() && Lower->first == Idx) { in DeleteFeatureFreq() 60 FeatureFreqs.erase(Lower); in DeleteFeatureFreq() 135 auto Lower = std::lower_bound(FeatureFreqs.begin(), FeatureFreqs.end(), in UpdateFeatureFrequency() local 140 if (Lower != FeatureFreqs.end() && Lower->first == Idx) { in UpdateFeatureFrequency() 141 Lower->second++; in UpdateFeatureFrequency() 143 FeatureFreqs.insert(Lower, std::pair<uint32_t, uint16_t>(Idx, 1)); in UpdateFeatureFrequency()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Hexagon/ |
| H A D | HexagonConstExtenders.cpp | 167 Node *rotateLeft(Node *Lower, Node *Higher); 168 Node *rotateRight(Node *Lower, Node *Higher); 666 RangeTree::Node *RangeTree::rotateLeft(Node *Lower, Node *Higher) { in rotateLeft() argument 667 assert(Higher->Right == Lower); in rotateLeft() 671 if (height(Lower->Left) > height(Lower->Right)) in rotateLeft() 672 Lower = rotateRight(Lower->Left, Lower); in rotateLeft() 673 assert(height(Lower->Left) <= height(Lower->Right)); in rotateLeft() 674 Higher->Right = Lower->Left; in rotateLeft() 676 Lower->Left = Higher; in rotateLeft() 677 update(Lower); in rotateLeft() [all …]
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | LegalizerInfo.h | 77 Lower, enumerator 175 case LegacyLegalizeActions::Lower: in LegalizeActionStep() 176 Action = LegalizeActions::Lower; in LegalizeActionStep() 664 return actionIf(LegalizeAction::Lower, always); in lower() 673 return actionIf(LegalizeAction::Lower, Predicate); in lowerIf() 681 return actionIf(LegalizeAction::Lower, Predicate, Mutation); in lowerIf() 686 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 692 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() 697 return actionFor(LegalizeAction::Lower, Types); in lowerFor() 703 return actionFor(LegalizeAction::Lower, Types, Mutation); in lowerFor() [all …]
|
| /openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 126 const_iterator Lower = llvm::lower_bound(Original, Element); in add() local 127 Result.insert(Result.end(), Original.begin(), Lower); in add() 129 Result.insert(Result.end(), Lower, Original.end()); in add() 393 bool RangeSet::pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { in pin() argument 400 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower, true); in pin() 409 if (Lower <= Upper) in pin() 413 Lower = Type.getMinValue(); in pin() 418 Lower = Type.getMinValue(); in pin() 423 Lower = Type.getMinValue(); in pin() 432 Type.apply(Lower); in pin() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Analysis/ |
| H A D | StratifiedSets.h | 512 auto *Lower = &linksAt(LowerIndex); in tryMergeUpwards() local 514 if (Lower == Upper) in tryMergeUpwards() 518 auto *Current = Lower; in tryMergeUpwards() 531 if (Lower->hasBelow()) { in tryMergeUpwards() 532 auto NewBelowIndex = Lower->getBelow(); in tryMergeUpwards()
|
| H A D | ValueTracking.cpp | 474 ConstantInt *Lower = in computeKnownBitsFromRangeMetadata() local 478 ConstantRange Range(Lower->getValue(), Upper->getValue()); in computeKnownBitsFromRangeMetadata() 2399 ConstantInt *Lower = in rangeMetadataExcludesValue() local 2403 ConstantRange Range(Lower->getValue(), Upper->getValue()); in rangeMetadataExcludesValue() 7067 static void setLimitsForBinOp(const BinaryOperator &BO, APInt &Lower, in setLimitsForBinOp() argument 7070 unsigned Width = Lower.getBitWidth(); in setLimitsForBinOp() 7087 Lower = *C; in setLimitsForBinOp() 7091 Lower = APInt::getSignedMinValue(Width); in setLimitsForBinOp() 7095 Lower = APInt::getSignedMinValue(Width) + *C; in setLimitsForBinOp() 7111 Lower = *C; in setLimitsForBinOp() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.cpp | 59 if (LowerAddress < Lower) in addEntry() 60 Lower = LowerAddress; in addEntry()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/CSKY/ |
| H A D | CSKYAsmPrinter.cpp | 84 MCInstLowering.Lower(Instr, LRWInst); in expandTLSLA() 91 MCInstLowering.Lower(Instr, GRSInst); in expandTLSLA() 163 MCInstLowering.Lower(MI, TmpInst); in emitInstruction()
|
| H A D | CSKYMCInstLower.h | 28 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| H A D | flags.inc | 15 "deallocation of chunks. Lower value may reduce memory usage but " 20 "quarantine. Lower value may reduce memory usage but might increase "
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/XCore/ |
| H A D | XCoreMCInstLower.h | 30 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/Lanai/ |
| H A D | LanaiAsmPrinter.cpp | 176 MCInstLowering.Lower(MI, TmpInst); in emitCallInstruction() 193 MCInstLowering.Lower(MI, TmpInst); in customEmitInstruction()
|
| H A D | LanaiMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/ARC/ |
| H A D | ARCMCInstLower.h | 33 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/BPF/ |
| H A D | BPFMCInstLower.h | 32 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | Lanai.def | 18 // Lower 16-bits of a symbolic relocation
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/M68k/ |
| H A D | M68kMCInstLower.h | 50 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
|