Home
last modified time | relevance | path

Searched refs:field_bit_offset (Results 1 – 5 of 5) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-mips64/
H A DABISysV_mips64.cpp943 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
948 return_compiler_type.GetFieldAtIndex(idx, name, &field_bit_offset, in GetReturnValueObjectImpl()
973 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
1023 data_sp->GetBytes() + (field_bit_offset / 8), *field_byte_width, in GetReturnValueObjectImpl()
1040 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
1045 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
1054 uint32_t field_byte_offset = field_bit_offset / 8; in GetReturnValueObjectImpl()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-ppc/
H A DABISysV_ppc.cpp702 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
708 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
715 if (field_bit_offset % *field_bit_width != 0) { in GetReturnValueObjectImpl()
721 uint32_t field_byte_offset = field_bit_offset / 8; in GetReturnValueObjectImpl()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/
H A DABISysV_x86_64.cpp1624 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
1630 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
1640 if (field_bit_offset % *field_bit_width != 0) { in GetReturnValueObjectImpl()
1646 uint32_t field_byte_offset = field_bit_offset / 8; in GetReturnValueObjectImpl()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp2902 uint64_t field_bit_offset = in ParseChildMembers() local
2908 this_field_info.bit_offset = field_bit_offset; in ParseChildMembers()
2960 field_bit_offset = this_field_info.bit_offset; in ParseChildMembers()
3137 std::make_pair(field_decl, field_bit_offset)); in ParseChildMembers()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp9108 uint32_t field_bit_offset = 0; in DumpValue() local
9132 field_bit_offset = in DumpValue()
9137 field_bit_offset = record_layout.getBaseClassOffset(base_class_decl) in DumpValue()
9140 field_byte_offset = field_bit_offset / 8; in DumpValue()
9141 assert(field_bit_offset % 8 == 0); in DumpValue()
9205 field_bit_offset = record_layout.getFieldOffset(field_idx); in DumpValue()
9206 field_byte_offset = field_bit_offset / 8; in DumpValue()
9211 field_bitfield_bit_offset = field_bit_offset % 8; in DumpValue()