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

/freebsd-11.0-release/sys/contrib/dev/acpica/compiler/
H A Ddtfield.c292 UINT64 MaxValue; local
352 MaxValue = ((UINT64) (-1)) >> (64 - (ByteLength * 8));
356 if (Value > MaxValue)
/freebsd-11.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-11.0-release/contrib/llvm/lib/IR/
H A DConstantRange.cpp536 APInt MaxValue = APInt::getMaxValue(DstTySize).zext(getBitWidth());
543 // Analyze wrapped sets in their two parts: [0, Upper) \/ [Lower, MaxValue]
544 // We use the non-wrapped set code to analyze the [Lower, MaxValue) part, and
545 // then we do the union with [MaxValue, Upper)
548 if (Upper.uge(MaxValue))
554 // Union covers the MaxValue case, so return if the remaining range is just
555 // MaxValue.
561 if (LowerDiv.uge(MaxValue)) {
567 if (UpperDiv.ule(MaxValue))
/freebsd-11.0-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;
217 bool isImm(int64_t MinValue, int64_t MaxValue) const {
218 return Kind == KindImm && inRange(Imm, MinValue, MaxValue);
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/MCTargetDesc/
H A DHexagonMCInstrInfo.cpp431 int MaxValue = HexagonMCInstrInfo::getMaxValue(MCII, MCI); local
432 return (MinValue > Value || Value > MaxValue);
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/
H A DHexagonInstrInfo.cpp1690 int MaxValue = getMaxValue(MI); local
1693 return (ImmValue < MinValue || ImmValue > MaxValue);
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DScalarEvolution.cpp8144 APInt MaxValue = APInt::getSignedMaxValue(BitWidth);
8149 return (MaxValue - MaxStrideMinusOne).slt(MaxRHS);
8153 APInt MaxValue = APInt::getMaxValue(BitWidth);
8158 return (MaxValue - MaxStrideMinusOne).ult(MaxRHS);

Completed in 150 milliseconds