Searched refs:MaxValue (Results 1 - 7 of 7) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInst.cpp96 int MaxValue = getMaxValue(); local
113 return (ImmValue < MinValue || ImmValue > MaxValue);
/freebsd-10.1-release/sys/contrib/dev/acpica/compiler/
H A Ddtfield.c293 UINT64 MaxValue; local
337 MaxValue = ((UINT64) (-1)) >> (64 - (ByteLength * 8));
341 if (Value > MaxValue)
/freebsd-10.1-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp472 APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth());
479 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
480 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
481 // then we do the union with [MaxValue, Upper)
484 if (Upper.uge(MaxValue))
490 // Union covers the MaxValue case, so return if the remaining range is just
491 // MaxValue.
497 if (LowerDiv.uge(MaxValue)) {
503 if (UpperDiv.ule(MaxValue))
/freebsd-10.1-release/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java65 "MaxValue",
401 public static MaxValue
404 MaxValue v = new MaxValue(101);
/freebsd-10.1-release/contrib/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp23 // Return true if Expr is in the range [MinValue, MaxValue].
24 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { argument
27 return Value >= MinValue && Value <= MaxValue;
195 bool isImm(int64_t MinValue, int64_t MaxValue) const {
196 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
/freebsd-10.1-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1704 int MaxValue = getMaxValue(MI); local
1707 return (ImmValue < MinValue || ImmValue > MaxValue);
/freebsd-10.1-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp6349 APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
6354 return (MaxValue - MaxStrideMinusOne).slt(MaxRHS);
6358 APInt MaxValue = APInt::getMaxValue(BitWidth);
6363 return (MaxValue - MaxStrideMinusOne).ult(MaxRHS);

Completed in 97 milliseconds