Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/ABI/Mips/
DABISysV_mips64.cpp933 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
938 return_compiler_type.GetFieldAtIndex(idx, name, &field_bit_offset, in GetReturnValueObjectImpl()
963 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
1013 data_sp->GetBytes() + (field_bit_offset / 8), *field_byte_width, in GetReturnValueObjectImpl()
1030 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
1035 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
1044 uint32_t field_byte_offset = field_bit_offset / 8; in GetReturnValueObjectImpl()
/external/llvm-project/lldb/source/Plugins/ABI/X86/
DABIWindows_x86_64.cpp559 uint64_t field_bit_offset = 0; in FlattenAggregateType() local
561 idx, name, &field_bit_offset, nullptr, nullptr); in FlattenAggregateType()
570 if (field_bit_offset % *field_bit_width != 0) { in FlattenAggregateType()
575 uint32_t field_byte_offset = field_bit_offset / 8 + data_byte_offset; in FlattenAggregateType()
DABISysV_x86_64.cpp586 uint64_t field_bit_offset = 0; in FlattenAggregateType() local
588 idx, name, &field_bit_offset, nullptr, nullptr); in FlattenAggregateType()
597 uint32_t field_byte_offset = field_bit_offset / 8 + data_byte_offset; in FlattenAggregateType()
/external/llvm-project/lldb/source/Plugins/ABI/PowerPC/
DABISysV_ppc.cpp698 uint64_t field_bit_offset = 0; in GetReturnValueObjectImpl() local
704 idx, name, &field_bit_offset, nullptr, nullptr); in GetReturnValueObjectImpl()
711 if (field_bit_offset % *field_bit_width != 0) { in GetReturnValueObjectImpl()
717 uint32_t field_byte_offset = field_bit_offset / 8; in GetReturnValueObjectImpl()
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp2556 uint64_t field_bit_offset = in ParseSingleMember() local
2561 this_field_info.bit_offset = field_bit_offset; in ParseSingleMember()
2603 field_bit_offset = this_field_info.bit_offset; in ParseSingleMember()
2666 last_field_info.bit_offset = field_bit_offset; in ParseSingleMember()
2725 std::make_pair(field_decl, field_bit_offset)); in ParseSingleMember()
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp8304 uint32_t field_bit_offset = 0; in DumpValue() local
8328 field_bit_offset = in DumpValue()
8333 field_bit_offset = record_layout.getBaseClassOffset(base_class_decl) in DumpValue()
8336 field_byte_offset = field_bit_offset / 8; in DumpValue()
8337 assert(field_bit_offset % 8 == 0); in DumpValue()
8401 field_bit_offset = record_layout.getFieldOffset(field_idx); in DumpValue()
8402 field_byte_offset = field_bit_offset / 8; in DumpValue()
8406 field_bitfield_bit_offset = field_bit_offset % 8; in DumpValue()