Home
last modified time | relevance | path

Searched refs:APVal (Results 1 – 4 of 4) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp3474 if (APVal.isAbsent() && isValidStructGUID(getASTContext(), getType())) { in getAsAPValue()
3477 APVal = APValue(APValue::UninitStruct(), 0, 4); in getAsAPValue()
3478 APVal.getStructField(0) = APValue(APSInt(APInt(32, PartVal.Part1), true)); in getAsAPValue()
3479 APVal.getStructField(1) = APValue(APSInt(APInt(16, PartVal.Part2), true)); in getAsAPValue()
3480 APVal.getStructField(2) = APValue(APSInt(APInt(16, PartVal.Part3), true)); in getAsAPValue()
3481 APValue &Arr = APVal.getStructField(3) = in getAsAPValue()
3489 getASTContext().addDestruction(&APVal); in getAsAPValue()
3492 return APVal; in getAsAPValue()
H A DASTContext.cpp12277 const APValue &APVal) const { in getUnnamedGlobalConstantDecl()
12279 UnnamedGlobalConstantDecl::Profile(ID, Ty, APVal); in getUnnamedGlobalConstantDecl()
12287 UnnamedGlobalConstantDecl::Create(*this, Ty, APVal); in getUnnamedGlobalConstantDecl()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1394 llvm::APInt APVal(64, 0); in parseSimpleIntegerLiteral() local
1395 if (Literal.GetIntegerValue(APVal)) in parseSimpleIntegerLiteral()
1398 Value = APVal.getLimitedValue(); in parseSimpleIntegerLiteral()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DDeclCXX.h4292 mutable APValue APVal; variable
4350 const APValue &APVal);
4368 const APValue &APVal) { in Profile() argument
4370 APVal.Profile(ID); in Profile()