Searched refs:byte_size (Results 1 - 25 of 136) sorted by relevance

123456

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionVariable.cpp21 const size_t byte_size = m_frozen_sp->GetByteSize(); local
22 if (byte_size > 0)
24 if (m_frozen_sp->GetDataExtractor().GetByteSize() < byte_size)
26 m_frozen_sp->GetValue().ResizeData(byte_size);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp31 uint32_t byte_size)
34 *value = data.GetMaxU64(offset, byte_size);
42 uint32_t byte_size,
49 if (GetMaxU64(data, offset, value, byte_size) == false)
62 uint32_t byte_size)
65 *value = data.GetMaxS64(offset, byte_size);
73 uint32_t byte_size,
80 if (GetMaxS64(data, offset, value, byte_size) == false)
114 const unsigned byte_size = Is32Bit() ? 4 : 8; local
116 data.SetAddressByteSize(byte_size);
28 GetMaxU64(const lldb_private::DataExtractor &data, lldb::offset_t *offset, uint64_t *value, uint32_t byte_size) argument
39 GetMaxU64(const lldb_private::DataExtractor &data, lldb::offset_t *offset, uint64_t *value, uint32_t byte_size, uint32_t count) argument
59 GetMaxS64(const lldb_private::DataExtractor &data, lldb::offset_t *offset, int64_t *value, uint32_t byte_size) argument
70 GetMaxS64(const lldb_private::DataExtractor &data, lldb::offset_t *offset, int64_t *value, uint32_t byte_size, uint32_t count) argument
218 const unsigned byte_size = data.GetAddressByteSize(); local
337 const unsigned byte_size = data.GetAddressByteSize(); local
387 const uint32_t byte_size = data.GetAddressByteSize(); local
431 const unsigned byte_size = data.GetAddressByteSize(); local
446 const unsigned byte_size = data.GetAddressByteSize(); local
466 const unsigned byte_size = data.GetAddressByteSize(); local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Interpreter/
H A DOptionGroupFormat.cpp124 uint32_t byte_size = 0; local
126 while (ParserGDBFormatLetter (interpreter, gdb_format_cstr[0], format, byte_size))
135 if (gdb_format_cstr[0] || (format == eFormatInvalid && byte_size == 0 && count == 0))
146 ParserGDBFormatLetter (interpreter, m_prev_gdb_format, format, byte_size);
153 if (byte_size == 0)
154 ParserGDBFormatLetter (interpreter, m_prev_gdb_size, format, byte_size);
161 if (byte_size > 0 && format != lldb::eFormatAddressInfo)
188 m_byte_size.SetCurrentValue (byte_size);
208 OptionGroupFormat::ParserGDBFormatLetter (CommandInterpreter &interpreter, char format_letter, Format &format, uint32_t &byte_size) argument
224 byte_size
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DAddressRange.h37 /// Construct with a section pointer, offset, and byte_size.
40 /// offset and \a byte_size.
49 /// @param[in] byte_size
52 AddressRange (const lldb::SectionSP &section, lldb::addr_t offset, lldb::addr_t byte_size);
58 /// address \a file_addr, and byte size \a byte_size.
63 /// @param[in] byte_size
69 AddressRange(lldb::addr_t file_addr, lldb::addr_t byte_size, const SectionList *section_list = nullptr);
75 /// and setting the byte size to \a byte_size.
80 /// @param[in] byte_size
83 AddressRange (const Address& so_addr, lldb::addr_t byte_size);
274 SetByteSize(lldb::addr_t byte_size) argument
[all...]
H A DDataBufferHeap.h97 /// @param[in] byte_size
106 SetByteSize (lldb::offset_t byte_size);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DRegisterValue.cpp90 reg_info->byte_size, // item_byte_size
137 const uint32_t src_len = reg_info->byte_size;
194 const uint32_t dst_len = reg_info->byte_size;
274 const uint32_t byte_size = reg_info->byte_size; local
282 if (byte_size == 1)
284 else if (byte_size <= 2)
286 else if (byte_size <= 4)
288 else if (byte_size <= 8)
290 else if (byte_size <
417 ParseVectorEncoding(const RegisterInfo *reg_info, const char *vector_str, const uint32_t byte_size, RegisterValue *reg_value) argument
464 const uint32_t byte_size = reg_info->byte_size; local
871 SetUInt(uint64_t uint, uint32_t byte_size) argument
[all...]
H A DAddressRange.cpp25 AddressRange::AddressRange (addr_t file_addr, addr_t byte_size, const SectionList *section_list) : argument
27 m_byte_size(byte_size)
31 AddressRange::AddressRange (const lldb::SectionSP &section, addr_t offset, addr_t byte_size) : argument
33 m_byte_size(byte_size)
37 AddressRange::AddressRange (const Address& so_addr, addr_t byte_size) : argument
39 m_byte_size(byte_size)
50 // const addr_t byte_size = GetByteSize();
51 // if (byte_size)
52 // return addr.GetSection() == m_base_addr.GetSection() && (addr.GetOffset() - m_base_addr.GetOffset()) < byte_size;
199 s->Printf("%p: AddressRange section = %p, offset = 0x%16.16" PRIx64 ", byte_size
[all...]
H A DAddressResolverName.cpp186 addr_t byte_size = sc.function->GetAddressRange().GetByteSize(); local
193 byte_size -= prologue_byte_size;
199 AddressRange new_range (func_addr, byte_size);
214 addr_t byte_size = sc.symbol->GetByteSize(); local
222 byte_size -= prologue_byte_size;
228 AddressRange new_range (func_addr, byte_size);
H A DOpcode.cpp95 uint32_t byte_size = GetByteSize (); local
99 if (byte_size > 0)
155 buffer_sp.reset (new DataBufferHeap (buf, byte_size));
158 return byte_size;
H A DAddressResolverFileLine.cpp64 addr_t byte_size = sc.line_entry.range.GetByteSize(); local
67 AddressRange new_range (line_start, byte_size);
H A DValueObjectConstResultChild.cpp24 uint32_t byte_size,
36 byte_size,
19 ValueObjectConstResultChild( ValueObject &parent, const CompilerType &compiler_type, const ConstString &name, uint32_t byte_size, int32_t byte_offset, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, bool is_base_class, bool is_deref_of_parent, lldb::addr_t live_address, uint64_t language_flags ) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DStoppointLocation.cpp33 StoppointLocation::StoppointLocation (break_id_t bid, addr_t addr, uint32_t byte_size, bool hardware) : argument
38 m_byte_size(byte_size),
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_powerpc.cpp83 uint64_t v = m_fpr.GetMaxU64(&offset, reg_info->byte_size);
84 if (offset == reg_info->byte_offset + reg_info->byte_size)
91 offset = m_vec.CopyData(offset, reg_info->byte_size, &v);
92 if (offset == reg_info->byte_size)
94 value.SetBytes(v, reg_info->byte_size, m_vec.GetByteOrder());
98 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
99 if (offset == reg_info->byte_offset + reg_info->byte_size)
101 if (reg_info->byte_size < sizeof(v))
H A DRegisterContextPOSIXCore_arm.cpp62 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
63 if (offset == reg_info->byte_offset + reg_info->byte_size)
H A DRegisterContextPOSIXCore_arm64.cpp62 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
63 if (offset == reg_info->byte_offset + reg_info->byte_size)
H A DRegisterContextPOSIXCore_mips64.cpp62 uint64_t v = m_gpr.GetMaxU64(&offset, reg_info->byte_size);
63 if (offset == reg_info->byte_offset + reg_info->byte_size)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DUniqueDWARFASTType.h41 int32_t byte_size) :
45 m_byte_size (byte_size)
107 const int32_t byte_size,
138 const int32_t byte_size,
145 return pos->second.Find (die, decl, byte_size, entry);
38 UniqueDWARFASTType(lldb::TypeSP &type_sp, const DWARFDIE &die, const lldb_private::Declaration &decl, int32_t byte_size) argument
135 Find(const lldb_private::ConstString &name, const DWARFDIE &die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
H A DUniqueDWARFASTType.cpp21 const int32_t byte_size,
30 if (udt.m_byte_size < 0 || byte_size < 0 || udt.m_byte_size == byte_size)
19 Find(const DWARFDIE &die, const lldb_private::Declaration &decl, const int32_t byte_size, UniqueDWARFASTType &entry) const argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h59 AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size);
62 RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size);
93 uint32_t byte_size,
174 AllocateMemory (size_t byte_size,
185 AllocatePage (uint32_t byte_size,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp35 unsigned int byte_size)
38 *value = data.GetMaxU64(offset_ptr, byte_size);
46 unsigned int byte_size)
48 if (!GetMaxU64(data, offset_ptr, &entry.type, byte_size))
51 if (!GetMaxU64(data, offset_ptr, &entry.value, byte_size))
69 const unsigned int byte_size = m_process->GetAddressByteSize(); local
76 if (!ParseAuxvEntry(data, entry, &offset, byte_size))
32 GetMaxU64(DataExtractor &data, lldb::offset_t *offset_ptr, uint64_t *value, unsigned int byte_size) argument
43 ParseAuxvEntry(DataExtractor &data, AuxVector::Entry &entry, lldb::offset_t *offset_ptr, unsigned int byte_size) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Utility/
H A DARM64_DWARF_Registers.cpp114 reg_info.byte_size = 8;
120 reg_info.byte_size = 16;
126 reg_info.byte_size = 4;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DMemory.cpp118 MemoryCache::AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) argument
120 if (byte_size > 0)
123 InvalidRanges::Entry range (base_addr, byte_size);
130 MemoryCache::RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) argument
132 if (byte_size > 0)
139 if (entry->GetRangeBase() == base_addr && entry->GetByteSize() == byte_size)
283 uint32_t byte_size,
287 m_byte_size (byte_size),
291 // m_allocated (byte_size / chunk_size)
293 assert (byte_size > chunk_siz
282 AllocatedBlock(lldb::addr_t addr, uint32_t byte_size, uint32_t permissions, uint32_t chunk_size) argument
463 AllocatePage(uint32_t byte_size, uint32_t permissions, uint32_t chunk_size, Error &error) argument
493 AllocateMemory(size_t byte_size, uint32_t permissions, Error &error) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompilerType.cpp952 size_t byte_size,
959 return m_type_system->DumpTypeValue(m_type, s, format, data, byte_offset, byte_size, bitfield_bit_size, bitfield_bit_offset, exe_scope);
1012 const uint64_t byte_size = GetByteSize(nullptr); local
1021 if (byte_size <= sizeof(unsigned long long))
1023 uint64_t uval64 = data.GetMaxU64 (&offset, byte_size);
1024 if (byte_size <= sizeof(unsigned int))
1029 else if (byte_size <= sizeof(unsigned long))
1034 else if (byte_size <= sizeof(unsigned long long))
1045 if (byte_size <= sizeof(long long))
1047 int64_t sval64 = data.GetMaxS64 (&offset, byte_size);
948 DumpTypeValue(Stream *s, lldb::Format format, const lldb_private::DataExtractor &data, lldb::offset_t byte_offset, size_t byte_size, uint32_t bitfield_bit_size, uint32_t bitfield_bit_offset, ExecutionContextScope *exe_scope) argument
1148 const uint64_t byte_size = (bit_width + 7 ) / 8; local
1223 const uint64_t byte_size = GetByteSize(exe_ctx ? exe_ctx->GetBestExecutionContextScope() : NULL); local
1273 const uint64_t byte_size = GetByteSize(exe_ctx ? exe_ctx->GetBestExecutionContextScope() : NULL); local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/MacOSX-arm64/
H A DABIMacOSX_arm64.cpp440 const uint64_t byte_size = new_value_sp->GetData(data, data_error); local
456 if (byte_size <= 16)
459 if (byte_size <= 8)
461 uint64_t raw_value = data.GetMaxU64(&offset, byte_size);
473 raw_value = data.GetMaxU64(&offset, byte_size - offset);
498 if (byte_size <= 16)
500 if (byte_size <= RegisterValue::GetMaxByteSize())
512 error.SetErrorStringWithFormat ("returning float values with a byte size of %" PRIu64 " are not supported", byte_size);
529 if (byte_size > 0)
535 if (byte_size <
716 const size_t byte_size = value_type.GetByteSize(nullptr); local
876 const size_t byte_size = return_compiler_type.GetByteSize(nullptr); local
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm64/
H A DABISysV_arm64.cpp414 const uint64_t byte_size = new_value_sp->GetData(data, data_error); local
430 if (byte_size <= 16)
433 if (byte_size <= 8)
435 uint64_t raw_value = data.GetMaxU64(&offset, byte_size);
447 raw_value = data.GetMaxU64(&offset, byte_size - offset);
472 if (byte_size <= 16)
474 if (byte_size <= RegisterValue::GetMaxByteSize())
486 error.SetErrorStringWithFormat ("returning float values with a byte size of %" PRIu64 " are not supported", byte_size);
503 if (byte_size > 0)
509 if (byte_size <
694 const size_t byte_size = value_type.GetByteSize(nullptr); local
847 const size_t byte_size = return_compiler_type.GetByteSize(nullptr); local
[all...]

Completed in 316 milliseconds

123456