Home
last modified time | relevance | path

Searched refs:Upper (Results 1 – 25 of 32) sorted by relevance

12

/minix/external/bsd/llvm/dist/llvm/lib/IR/
H A DConstantRange.cpp277 if (Upper.ult(CR.Upper)) in intersectWith()
282 if (Upper.ult(CR.Upper)) in intersectWith()
293 if (CR.Upper.ult(Upper)) in intersectWith()
312 if (CR.Upper.ult(Upper)) { in intersectWith()
352 if (CR.Upper.ult(Lower) || Upper.ult(CR.Lower)) { in unionWith()
375 if (CR.Upper.ule(Upper) || CR.Lower.uge(Lower)) in unionWith()
380 if (CR.Lower.ule(Upper) && Lower.ule(CR.Upper)) in unionWith()
386 if (Upper.ule(CR.Lower) && CR.Upper.ule(Lower)) { in unionWith()
395 if (Upper.ult(CR.Lower) && Lower.ult(CR.Upper)) in unionWith()
400 assert(CR.Lower.ult(Upper) && CR.Upper.ult(Lower) && in unionWith()
[all …]
H A DInstructions.cpp3272 APInt Upper(C); in makeConstantRange() local
3276 case ICmpInst::ICMP_EQ: ++Upper; break; in makeConstantRange()
3281 if (Lower == Upper) in makeConstantRange()
3287 if (Lower == Upper) in makeConstantRange()
3293 if (Lower == Upper) in makeConstantRange()
3299 if (Lower == Upper) in makeConstantRange()
3305 if (Lower == Upper) in makeConstantRange()
3311 if (Lower == Upper) in makeConstantRange()
3317 if (Lower == Upper) in makeConstantRange()
3323 if (Lower == Upper) in makeConstantRange()
[all …]
/minix/external/bsd/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp123 if (i->From() > Upper) { in IntersectInRange()
165 if (Lower < Upper) in pin()
175 Type.apply(Upper); in pin()
194 Type.apply(Upper); in pin()
211 Type.apply(Upper); in pin()
216 if (Lower < Upper) in pin()
240 if (!pin(Lower, Upper)) in Intersect()
246 if (Lower <= Upper) in Intersect()
252 IntersectInRange(BV, F, BV.getMinValue(Upper), Upper, newRanges, i, e); in Intersect()
430 ++Upper; in assumeSymNE()
[all …]
/minix/external/bsd/llvm/dist/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h29 uint32_t Upper; member
36 return Range.Upper < Value;
77 if (I->Upper < I->Lower) { in rangesAreValid()
81 DEBUG(dbgs().write_hex(I->Upper) << "\n"); in rangesAreValid()
84 Prev = I->Upper; in rangesAreValid()
H A DFormat.h261 bool Upper; variable
265 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U) { } in FormattedNumber()
274 inline FormattedNumber format_hex(uint64_t N, unsigned Width, bool Upper=false) {
276 return FormattedNumber(N, 0, Width, true, Upper);
/minix/external/bsd/llvm/dist/llvm/include/llvm/IR/
H A DConstantRange.h43 APInt Lower, Upper; variable
60 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
78 const APInt &getUpper() const { return Upper; } in getUpper()
114 if (Upper == Lower + 1) in getSingleElement()
146 return Lower == CR.Lower && Upper == CR.Upper;
/minix/external/bsd/llvm/dist/clang/unittests/Basic/
H A DVirtualFileSystemTest.cpp216 O->pushOverlay(Upper); in TEST()
241 O->pushOverlay(Upper); in TEST()
377 O->pushOverlay(Upper); in TEST()
385 Upper->addRegularFile("/file2"); in TEST()
393 Upper->addDirectory("/dir2"); in TEST()
409 O->pushOverlay(Upper); in TEST()
419 Upper->addDirectory("/dir"); in TEST()
436 Upper->addDirectory("/dir2"); in TEST()
457 O->pushOverlay(Upper); in TEST()
466 Upper->addRegularFile("/file3"); in TEST()
[all …]
/minix/external/bsd/llvm/dist/llvm/lib/Support/
H A DScaledNumber.cpp32 uint64_t Upper = P1, Lower = P4; in multiply64() local
35 Upper += getU(N) + (NewLower < Lower); in multiply64()
42 if (!Upper) in multiply64()
46 unsigned LeadingZeros = countLeadingZeros(Upper); in multiply64()
49 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64()
50 return getRounded(Upper, Shift, in multiply64()
H A Draw_ostream.cpp418 const char A = FN.Upper ? 'A' : 'a'; in operator <<()
/minix/minix/drivers/power/acpi/utilities/
H A Dutprint.c88 BOOLEAN Upper);
181 BOOLEAN Upper) in AcpiUtPutNumber() argument
189 Digits = Upper ? AcpiGbl_UpperHexDigits : AcpiGbl_LowerHexDigits; in AcpiUtPutNumber()
309 BOOLEAN Upper; in AcpiUtFormatNumber() local
327 Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE; in AcpiUtFormatNumber()
363 Pos = AcpiUtPutNumber (ReversedString, Number, Base, Upper); in AcpiUtFormatNumber()
394 Upper ? 'X' : 'x'); in AcpiUtFormatNumber()
/minix/external/bsd/llvm/dist/llvm/lib/Analysis/
H A DStratifiedSets.h611 auto *Upper = &linksAt(UpperIndex); in tryMergeUpwards() local
612 if (Lower == Upper) in tryMergeUpwards()
618 while (Current->hasAbove() && Current != Upper) { in tryMergeUpwards()
624 if (Current != Upper) in tryMergeUpwards()
627 Upper->setAttrs(Attrs); in tryMergeUpwards()
631 Upper->setBelow(NewBelowIndex); in tryMergeUpwards()
635 Upper->clearBelow(); in tryMergeUpwards()
639 Ptr->remapTo(Upper->Number); in tryMergeUpwards()
H A DInstructionSimplify.cpp2236 APInt Upper = APInt(Width, 0); in SimplifyICmpInst() local
2240 Upper = CI2->getValue(); in SimplifyICmpInst()
2244 Lower = (-Upper) + 1; in SimplifyICmpInst()
2247 Upper = CI2->getValue() + 1; in SimplifyICmpInst()
2257 Upper = Lower.lshr(1) + 1; in SimplifyICmpInst()
2261 Lower = (-Upper) + 1; in SimplifyICmpInst()
2271 Upper = IntMax + 1; in SimplifyICmpInst()
2276 Upper = IntMax.sdiv(Val); in SimplifyICmpInst()
2277 if (Lower.sgt(Upper)) in SimplifyICmpInst()
2279 Upper = Upper + 1; in SimplifyICmpInst()
[all …]
H A DDependenceAnalysis.cpp2482 if (Bound[K].Upper[Dependence::DVEntry::ALL]) in banerjeeMIVtest()
2584 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections()
2593 if (Bound[Level].Upper[Dependence::DVEntry::EQ]) in exploreDirections()
2602 if (Bound[Level].Upper[Dependence::DVEntry::GT]) in exploreDirections()
2675 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL()
2685 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL()
2718 Bound[K].Upper[Dependence::DVEntry::EQ] = in findBoundsEQ()
2764 Bound[K].Upper[Dependence::DVEntry::LT] = in findBoundsLT()
2811 Bound[K].Upper[Dependence::DVEntry::GT] = in findBoundsGT()
2906 const SCEV *Sum = Bound[1].Upper[Bound[1].Direction]; in getUpperBound()
[all …]
H A DValueTracking.cpp315 ConstantInt *Upper = in computeKnownBitsFromRangeMetadata() local
317 ConstantRange Range(Lower->getValue(), Upper->getValue()); in computeKnownBitsFromRangeMetadata()
320 unsigned LeadingZeros = (Upper->getValue() - 1).countLeadingZeros(); in computeKnownBitsFromRangeMetadata()
1518 ConstantInt *Upper = in rangeMetadataExcludesValue() local
1520 ConstantRange Range(Lower->getValue(), Upper->getValue()); in rangeMetadataExcludesValue()
/minix/external/bsd/llvm/dist/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp966 SDValue Upper = CurDAG->getConstant(UpperVal, VT); in splitLargeImmediate() local
968 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper); in splitLargeImmediate()
969 Upper = SDValue(Select(Upper.getNode()), 0); in splitLargeImmediate()
972 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower); in splitLargeImmediate()
/minix/share/locale/ctype/
H A Dhy_AM.ARMSCII-8.src32 * Upper to lower
159 * Upper to upper
/minix/tests/usr.bin/grep/
H A Dt_grep.sh112 grep -i Upper "$(atf_get_srcdir)/d_input"
/minix/external/bsd/llvm/dist/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h363 const SCEV *Upper[8]; member
/minix/usr.bin/calendar/calendars/
H A Dcalendar.music95 06/22 Todd Rundgren is born in Upper Darby, Pennsylvania, 1948
H A Dcalendar.holiday7 01/03 Revolution Day in Upper Volta
437 12/11 Independence Day in Upper Volta
/minix/share/misc/
H A Dinter.phone337 226:::Upper Volta (Burkina Faso)
H A Dzipcodes4853 12987:Upper Jay, NY
7772 19082:Upper Darby, PA
7773 19083:Upper Darby, PA
8527 20772:Upper Marlboro, MD
8528 20775:Upper Marlboro, MD
8684 21156:Upper Falls, MD
8969 21868:Upper Hill, MD
11274 26866:Upper Tract, WV
17755 41178:Upper Tygart, KY
40090 95485:Upper Lake, CA
[all …]
/minix/external/bsd/llvm/dist/clang/lib/Sema/
H A DSemaOpenMP.cpp2276 Expr *Upper = TestIsLessOp ? UB : LB; in BuildNumIterations() local
2279 Diff = SemaRef.BuildBinOp(S, DefaultLoc, BO_Sub, Upper, Lower); in BuildNumIterations()
2284 SemaRef.Diag(Upper->getLocStart(), diag::err_omp_loop_diff_cxx) in BuildNumIterations()
2285 << Upper->getSourceRange() << Lower->getSourceRange(); in BuildNumIterations()
/minix/external/bsd/llvm/dist/clang/lib/CodeGen/
H A DCGExpr.cpp1171 llvm::Value *Upper = Builder.CreateICmpSLE( in EmitLoadOfScalar() local
1175 Check = Builder.CreateAnd(Upper, Lower); in EmitLoadOfScalar()
/minix/external/bsd/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstrInfo.td647 // Load Upper Imediate

12