Home
last modified time | relevance | path

Searched refs:GetBitfieldBitSize (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObjectChild.h36 uint32_t GetBitfieldBitSize() override { return m_bitfield_bit_size; } in GetBitfieldBitSize() function
H A DValueObject.h424 virtual uint32_t GetBitfieldBitSize() { return 0; } in GetBitfieldBitSize() function
429 return (GetBitfieldBitSize() != 0) || (GetBitfieldBitOffset() != 0); in IsBitfield()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp113 valobj->GetBitfieldBitSize(), // Bitfield bit size in FormatObject()
H A DFormatManager.cpp189 if (valobj.GetBitfieldBitSize() > 0) { in GetPossibleMatches()
191 sstring.Printf("%s:%d", type_name.AsCString(), valobj.GetBitfieldBitSize()); in GetPossibleMatches()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp871 return m_opaque_up->GetBitfieldBitSize(); in GetBitfieldSizeInBits()
897 const uint32_t bitfield_bit_size = m_opaque_up->GetBitfieldBitSize(); in GetDescription()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DType.h751 uint32_t GetBitfieldBitSize() const { return m_bitfield_bit_size; } in GetBitfieldBitSize() function
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DFormatEntity.cpp904 target->GetBitfieldBitSize()); in DumpValue()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp336 const uint32_t bitfield_bit_size = GetBitfieldBitSize(); in ResolveValue()