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

/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInst.cpp96 int MaxValue = getMaxValue(); local
113 return (ImmValue < MinValue || ImmValue > MaxValue);
/freebsd-10.0-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.0-release/contrib/llvm/lib/Support/
H A DConstantRange.cpp469 APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth());
476 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
477 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
478 // then we do the union with [MaxValue, Upper)
481 if (Upper.uge(MaxValue))
487 // Union covers the MaxValue case, so return if the remaining range is just
488 // MaxValue.
494 if (LowerDiv.uge(MaxValue)) {
500 if (UpperDiv.ule(MaxValue))
/freebsd-10.0-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.0-release/contrib/llvm/lib/Target/SystemZ/AsmParser/
H A DSystemZAsmParser.cpp21 // Return true if Expr is in the range [MinValue, MaxValue].
22 static bool inRange(const MCExpr *Expr, int64_t MinValue, int64_t MaxValue) { argument
25 return Value >= MinValue && Value <= MaxValue;
169 bool isImm(int64_t MinValue, int64_t MaxValue) const {
170 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
/freebsd-10.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp2305 int MaxValue = getMaxValue(MI); local
2308 return (ImmValue < MinValue || ImmValue > MaxValue);

Completed in 133 milliseconds