Searched refs:MaxVal (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/SystemZ/ |
D | SystemZFrameLowering.cpp | 298 int64_t MaxVal = (int64_t(1) << 31) - 8; in emitIncrement() local 301 else if (ThisVal > MaxVal) in emitIncrement() 302 ThisVal = MaxVal; in emitIncrement()
|
/external/llvm/lib/Target/SystemZ/AsmParser/ |
D | SystemZAsmParser.cpp | 358 int64_t MaxVal, bool AllowTLS); 782 int64_t MaxVal, bool AllowTLS) { in parsePCRel() argument 794 if ((Value & 1) || Value < MinVal || Value > MaxVal) { in parsePCRel()
|
/external/deqp/modules/egl/ |
D | teglChooseConfigTests.cpp | 366 template <int MinVal, int MaxVal> static EGLint getInt (de::Random& rnd) in getInt() 368 return rnd.getInt(MinVal, MaxVal); in getInt()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineCompares.cpp | 2330 APInt MaxVal = APInt::getMaxValue(MulWidth); in ProcessUMulZExtIdiom() local 2331 MaxVal = MaxVal.zext(CI->getBitWidth()); in ProcessUMulZExtIdiom() 2332 if (MaxVal.eq(CI->getValue())) in ProcessUMulZExtIdiom() 2342 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth); in ProcessUMulZExtIdiom() local 2343 if (MaxVal.eq(CI->getValue())) in ProcessUMulZExtIdiom() 2353 APInt MaxVal = APInt::getMaxValue(MulWidth); in ProcessUMulZExtIdiom() local 2354 MaxVal = MaxVal.zext(CI->getBitWidth()); in ProcessUMulZExtIdiom() 2355 if (MaxVal.eq(CI->getValue())) in ProcessUMulZExtIdiom() 2365 APInt MaxVal = APInt::getOneBitSet(CI->getBitWidth(), MulWidth); in ProcessUMulZExtIdiom() local 2366 if (MaxVal.eq(CI->getValue())) in ProcessUMulZExtIdiom()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 1576 APInt MinVal, MaxVal; in SimplifySetCC() local 1580 MaxVal = APInt::getSignedMaxValue(OperandBitSize); in SimplifySetCC() 1583 MaxVal = APInt::getMaxValue(OperandBitSize); in SimplifySetCC() 1603 if (C1 == MaxVal) return DAG.getConstant(1, VT); // X <= MAX --> true in SimplifySetCC() 1621 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal) in SimplifySetCC() 1623 if ((Cond == ISD::SETLE || Cond == ISD::SETULE) && C1 == MaxVal) in SimplifySetCC() 1630 if ((Cond == ISD::SETLT || Cond == ISD::SETULT) && C1 == MaxVal) in SimplifySetCC() 1639 if ((Cond == ISD::SETGT || Cond == ISD::SETUGT) && C1 == MaxVal-1) in SimplifySetCC() 1641 DAG.getConstant(MaxVal, N0.getValueType()), in SimplifySetCC()
|
/external/clang/lib/Frontend/ |
D | InitPreprocessor.cpp | 185 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth) in DefineTypeSize() local 187 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix); in DefineTypeSize()
|