reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/AsmParser/LLParser.cpp
 4210   Result.assign(S.getExtValue());
lib/CodeGen/MIRParser/MIParser.cpp
 1483   Dest = MachineOperand::CreateImm(Int.getExtValue());
 2012   Offset = (int)Token.integerValue().getExtValue();
 2314       ShufMask.push_back(ConstantInt::get(I32Ty, Int.getExtValue()));
 2554   Offset = Token.integerValue().getExtValue();
lib/DebugInfo/CodeView/CodeViewRecordIO.cpp
  167     Value = N.getExtValue();
tools/clang/lib/AST/ExprConstant.cpp
 8236       MaxLength = N.getExtValue();
10784       MaxLength = N.getExtValue();
tools/clang/lib/CodeGen/CGDebugInfo.cpp
 2672           Count = Result.Val.getInt().getExtValue();
 4513           DBuilder.createConstantValueExpression(Init.getInt().getExtValue());
tools/clang/lib/CodeGen/CGOpenMPRuntime.cpp
10766         unsigned VLEN = VLENVal.getExtValue();
tools/clang/lib/CodeGen/TargetInfo.cpp
 6498         addNVVMMetadata(F, "maxntidx", MaxThreads.getExtValue());
 6508           addNVVMMetadata(F, "minctasm", MinBlocks.getExtValue());
 7976                 .getExtValue();
 7979                 .getExtValue();
 7998         Attr->getMin()->EvaluateKnownConstInt(M.getContext()).getExtValue();
 8001                                         .getExtValue()
tools/clang/lib/Sema/SemaOpenMP.cpp
11172     DSAStack->setAssociatedLoops(Result.getExtValue());
11174     DSAStack->setAssociatedLoops(Result.getExtValue());
tools/clang/lib/Sema/SemaTemplate.cpp
 3055     auto Nth = std::next(Ts.pack_begin(), Index.getExtValue());
tools/clang/lib/StaticAnalyzer/Checkers/MallocOverflowSecurityChecker.cpp
  205       auto denomExtVal = denomVal.getExtValue();
  217                (numeratorKnown && (denomExtVal >= Check.maxVal.getExtValue()));
tools/clang/tools/extra/clang-tidy/bugprone/MisplacedWideningCastCheck.cpp
   76         return LHSWidth + Result.Val.getInt().getExtValue();
tools/clang/tools/libclang/CIndex.cpp
 3822       result->EvalData.intVal = val.getExtValue();
unittests/ADT/APSIntTest.cpp
   72   EXPECT_EQ(7, APSInt(APInt(3, 7), true).getExtValue());
   73   EXPECT_EQ(-1, APSInt(APInt(3, 7), false).getExtValue());
   74   EXPECT_EQ(7, APSInt(APInt(4, 7), true).getExtValue());
   75   EXPECT_EQ(7, APSInt(APInt(4, 7), false).getExtValue());
   76   EXPECT_EQ(9, APSInt(APInt(4, -7), true).getExtValue());
   77   EXPECT_EQ(-7, APSInt(APInt(4, -7), false).getExtValue());
  146   EXPECT_EQ(APSInt("1").getExtValue(), 1);
  147   EXPECT_EQ(APSInt("-1").getExtValue(), -1);
  148   EXPECT_EQ(APSInt("0").getExtValue(), 0);
  149   EXPECT_EQ(APSInt("56789").getExtValue(), 56789);
  150   EXPECT_EQ(APSInt("-1234").getExtValue(), -1234);