/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | GenericBitset.cpp | 115 type.GetBitSize(ctx.GetBestExecutionContextScope()); in GetChildAtIndex() 127 type.GetBitSize(ctx.GetBestExecutionContextScope()); in GetChildAtIndex()
|
H A D | CxxStringTypes.cpp | 126 std::optional<uint64_t> size = wchar_compiler_type.GetBitSize(nullptr); in WCharStringSummaryProvider() 186 std::optional<uint64_t> size = wchar_compiler_type.GetBitSize(nullptr); in WCharSummaryProvider()
|
H A D | LibStdcpp.cpp | 320 std::optional<uint64_t> size = wchar_compiler_type.GetBitSize(nullptr); in LibStdcppWStringSummaryProvider()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
H A D | Flags.h | 46 size_t GetBitSize() const { return sizeof(ValueType) * 8; } in GetBitSize() function
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/ |
H A D | ABIWindows_x86_64.cpp | 278 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 349 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject() 565 field_compiler_type.GetBitSize(&thread); in FlattenAggregateType() 615 std::optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
H A D | ABISysV_x86_64.cpp | 271 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 342 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject() 592 field_compiler_type.GetBitSize(&thread); in FlattenAggregateType() 634 std::optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
H A D | ABIMacOSX_i386.cpp | 168 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 277 std::optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
H A D | ABISysV_i386.cpp | 185 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
H A D | ABISysV_ppc.cpp | 398 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 467 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject() 662 std::optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl() 705 field_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
H A D | ABISysV_ppc64.cpp | 275 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 346 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/DataFormatters/ |
H A D | FormattersHelpers.h | 138 size_t GetBitSize() const { return ptr_size << 3; } in GetBitSize() function
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | ValueObjectChild.cpp | 168 if (auto type_bit_size = GetCompilerType().GetBitSize( in UpdateValue()
|
H A D | ValueObject.cpp | 1263 if (auto temp = new_val_sp->GetCompilerType().GetBitSize(target.get())) in SetValueFromInteger()
|
/freebsd/contrib/llvm-project/lldb/source/Symbol/ |
H A D | CompilerType.cpp | 765 CompilerType::GetBitSize(ExecutionContextScope *exe_scope) const { in GetBitSize() function in CompilerType 768 return type_system_sp->GetBitSize(m_type, exe_scope); in GetBitSize() 774 if (std::optional<uint64_t> bit_size = GetBitSize(exe_scope)) in GetByteSize()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
H A D | ABISysV_s390x.cpp | 359 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 430 compiler_type.GetBitSize(frame_sp.get()); in SetReturnValueObject()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
H A D | CompilerType.h | 393 std::optional<uint64_t> GetBitSize(ExecutionContextScope *exe_scope) const;
|
H A D | TypeSystem.h | 312 GetBitSize(lldb::opaque_compiler_type_t type,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/ |
H A D | ABIMacOSX_arm.cpp | 1456 std::optional<uint64_t> bit_size = compiler_type.GetBitSize(&thread); in GetArgumentValues() 1562 std::optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
H A D | ABISysV_arm.cpp | 1462 if (std::optional<uint64_t> size = compiler_type.GetBitSize(&thread)) in GetArgumentValues() 1569 std::optional<uint64_t> bit_width = compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.h | 835 if (std::optional<uint64_t> bit_size = GetBitSize(type, exe_scope)) in GetByteSize() 840 std::optional<uint64_t> GetBitSize(lldb::opaque_compiler_type_t type,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/ |
H A D | ABIMacOSX_arm64.cpp | 145 std::optional<uint64_t> bit_size = value_type.GetBitSize(&thread); in GetArgumentValues()
|
H A D | ABISysV_arm64.cpp | 150 std::optional<uint64_t> bit_size = value_type.GetBitSize(&thread); in GetArgumentValues()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ |
H A D | ABISysV_mips.cpp | 809 std::optional<uint64_t> bit_width = return_compiler_type.GetBitSize(&thread); in GetReturnValueObjectImpl()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | IRForTarget.cpp | 304 std::optional<uint64_t> bit_size = m_result_type.GetBitSize(target_sp.get()); in CreateResultVariable()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
H A D | DWARFASTParserClang.cpp | 2027 std::optional<uint64_t> size = clang_type.GetBitSize(nullptr); in ParseTemplateDIE()
|