HomeSort by: relevance | last modified time | path
    Searched refs:IntMax (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
StdLibraryFunctionsChecker.cpp 1077 const RangeInt IntMax = BVF.getMaxValue(IntTy).getLimitedValue();
1086 // value of the argument should be min(UCharMax, IntMax). This just happen
1090 std::min(BVF.getMaxValue(ACtx.UnsignedCharTy).getLimitedValue(), IntMax);
1453 ConstraintSet{ReturnValueCondition(WithinRange, Range(-1, IntMax))};
1476 0, WithinRange, Range(0, IntMax))));
1483 .ArgConstraint(ArgumentCondition(0, WithinRange, Range(0, IntMax)))
1485 ArgumentCondition(1, WithinRange, Range(0, IntMax))));
1493 0, WithinRange, Range(0, IntMax))));
1509 0, WithinRange, Range(0, IntMax))));
1538 .ArgConstraint(ArgumentCondition(1, WithinRange, Range(0, IntMax)))
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfExpression.cpp 334 uint64_t IntMax = static_cast<uint64_t>(std::numeric_limits<int>::max());
335 if (Offset <= IntMax) {
346 uint64_t IntMax = static_cast<uint64_t>(std::numeric_limits<int>::max());
348 if (N && N->getOp() == dwarf::DW_OP_plus && Offset <= IntMax) {
352 !SubRegisterSizeInBits && Offset <= IntMax + 1) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonAsmBackend.cpp 397 const APInt IntMax = APInt::getSignedMaxValue(bits+align_bits);
404 IntMax.getSExtValue() <<
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 6718 APInt IntMax = APInt::getSignedMaxValue(Width);
6723 Upper = IntMax + 1;
6728 Upper = IntMax.sdiv(*C);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBuiltin.cpp 1866 auto IntMax = llvm::APInt::getSignedMaxValue(ResultInfo.Width);
1867 llvm::Value *IntMaxValue = llvm::ConstantInt::get(Result->getType(), IntMax);
1938 auto IntMax =
1941 CGF.Builder.CreateAdd(llvm::ConstantInt::get(OpTy, IntMax),
1958 auto IntMax =
1961 UnsignedResult, llvm::ConstantInt::get(OpTy, IntMax));
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
TargetLowering.cpp 5922 SDValue IntMax = DAG.getConstant(
5932 SDValue Masked = DAG.getNode(ISD::AND, DL, VT, N, IntMax);

Completed in 55 milliseconds