Home
last modified time | relevance | path

Searched refs:apint (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp101 std::optional<llvm::APInt> apint = GetAPInt(data, &offset, byte_size); in DumpAPInt() local
102 if (apint) { in DumpAPInt()
103 std::string apint_str = toString(*apint, radix, is_signed); in DumpAPInt()
676 std::optional<llvm::APInt> apint = in DumpDataExtractor() local
678 if (apint) { in DumpDataExtractor()
679 llvm::APFloat apfloat(semantics, *apint); in DumpDataExtractor()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1998 llvm::APSInt apint(*bit_width, !is_signed); in MakeAPValue() local
1999 apint = value; in MakeAPValue()
2002 return clang::APValue(apint); in MakeAPValue()
2012 ast.getFloatTypeSemantics(ClangUtil::GetQualType(clang_type)), apint)); in MakeAPValue()