HomeSort by relevance Sort by last modified time
    Searched defs:SignedMax (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/IR/
ConstantRange.cpp 210 APInt SignedMax = Other.getSignedMax();
212 if (SignedMax.isStrictlyPositive())
216 APInt::getSignedMinValue(BitWidth) - SignedMax));
289 APInt SignedMax(APInt::getSignedMaxValue(getBitWidth()));
293 return SignedMax;
296 return SignedMax;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
ConstantRange.cpp 220 const APInt &SignedMax = Other.getSignedMax();
221 if (SignedMax.isStrictlyPositive())
225 APInt::getSignedMinValue(BitWidth) - SignedMax));
245 const APInt &SignedMax = Other.getSignedMax();
246 if (SignedMax.isStrictlyPositive())
249 ConstantRange(APInt::getSignedMinValue(BitWidth) + SignedMax,
    [all...]

Completed in 156 milliseconds