Home
last modified time | relevance | path

Searched refs:m_address (Results 1 – 25 of 27) sorted by relevance

12

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instruction_lds.cpp11 for (auto& a : m_address) in do_print()
17 m_address(address), in LDSReadInstruction()
23 add_remappable_src_value(&m_address[i]); in LDSReadInstruction()
36 for (auto& a: m_address) { in replace_values()
46 return m_address == other.m_address && in is_equal_to()
52 m_address(address), in LDSAtomicInstruction()
60 add_remappable_src_value(&m_address); in LDSAtomicInstruction()
74 os << "[" << *m_address << "] " << *m_src0_value; in do_print()
86 *m_address == *other.m_address && in is_equal_to()
99 m_address(address), in LDSWriteInstruction()
[all …]
Dsfn_instruction_export.cpp118 m_address(address), in WriteScratchInstruction()
124 add_remappable_src_value(&m_address); in WriteScratchInstruction()
133 if (m_address) { in is_equal_to()
134 if (!other.m_address) in is_equal_to()
136 if (*m_address != *other.m_address) in is_equal_to()
139 if (other.m_address) in is_equal_to()
164 if (m_address) in do_print()
165 os << "@" << *m_address << "+"; in do_print()
173 if (!m_address) in replace_values_child()
177 if (*c == *m_address) in replace_values_child()
[all …]
Dsfn_instruction_lds.h14 const Value& address(unsigned i) const { return *m_address[i];} in address()
20 std::vector<PValue> m_address; variable
29 const Value& address() const { return *m_address;} in address()
39 PValue m_address; variable
51 const Value& address() const {return *m_address;}; in address()
63 PValue m_address; variable
Dsfn_instruction_export.h86 int address() const { assert(m_address); return m_address->sel();} in address()
87 bool indirect() const { return !!m_address;} in indirect()
99 PValue m_address; variable
/external/deqp/framework/delibs/decpp/
DdeSocket.hpp53 const char* getHost (void) const { return deSocketAddress_getHost(m_address); } in getHost()
54 int getPort (void) const { return deSocketAddress_getPort(m_address); } in getPort()
55 deSocketFamily getFamily (void) const { return deSocketAddress_getFamily(m_address); } in getFamily()
56 deSocketType getType (void) const { return deSocketAddress_getType(m_address); } in getType()
57 …deSocketProtocol getProtocol (void) const { return deSocketAddress_getProtocol(m_address); … in getProtocol()
59 operator deSocketAddress* () { return m_address; } in operator deSocketAddress*()
60 operator const deSocketAddress* () const { return m_address; } in operator const deSocketAddress*()
62 deSocketAddress* getPtr (void) { return m_address; } in getPtr()
69 deSocketAddress* m_address; member in de::SocketAddress
DdeSocket.cpp36 m_address = deSocketAddress_create(); in SocketAddress()
37 if (!m_address) in SocketAddress()
43 deSocketAddress_destroy(m_address); in ~SocketAddress()
48 if (!deSocketAddress_setHost(m_address, host)) in setHost()
54 if (!deSocketAddress_setPort(m_address, port)) in setPort()
60 if (!deSocketAddress_setFamily(m_address, family)) in setFamily()
66 if (!deSocketAddress_setType(m_address, type)) in setType()
72 if (!deSocketAddress_setProtocol(m_address, protocol)) in setProtocol()
/external/llvm-project/lldb/source/Core/
DValueObjectMemory.cpp55 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(type_sp), in ValueObjectMemory()
62 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
67 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
72 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
83 : ValueObject(exe_scope, manager), m_address(address), m_type_sp(), in ValueObjectMemory()
93 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in ValueObjectMemory()
98 lldb::addr_t file_address = m_address.GetFileAddress(); in ValueObjectMemory()
103 m_value.GetScalar() = m_address.GetOffset(); in ValueObjectMemory()
167 if (m_address.IsValid()) { in UpdateValue()
190 lldb::addr_t load_addr = m_address.GetLoadAddress(target); in UpdateValue()
[all …]
DValueObjectDynamicValue.cpp34 : ValueObject(parent), m_address(), m_dynamic_type_info(), in ValueObjectDynamicValue()
225 if (!m_address.IsValid() || m_address != dynamic_address) { in UpdateValue()
226 if (m_address.IsValid()) in UpdateValue()
230 m_address = dynamic_address; in UpdateValue()
232 lldb::addr_t load_address = m_address.GetLoadAddress(target_sp.get()); in UpdateValue()
248 if (m_address.IsValid() && m_dynamic_type_info) { in UpdateValue()
/external/llvm-project/lldb/source/Breakpoint/
DBreakpointLocation.cpp35 m_is_reexported(false), m_is_indirect(false), m_address(addr), in BreakpointLocation()
39 Symbol *symbol = m_address.CalculateSymbolContextSymbol(); in BreakpointLocation()
52 return m_address.GetOpcodeLoadAddress(&m_owner.GetTarget()); in GetLoadAddress()
64 Address &BreakpointLocation::GetAddress() { return m_address; } in GetAddress()
251 CompileUnit *comp_unit = m_address.CalculateSymbolContextCompileUnit(); in ConditionSaysStop()
455 m_address.GetOpcodeLoadAddress(&m_owner.GetTarget())); in ResolveBreakpointSite()
506 if (m_address.IsSectionOffset()) { in GetDescription()
507 m_address.CalculateSymbolContext(&sc); in GetDescription()
515 sc.DumpStopContext(s, m_owner.GetTarget().GetProcessSP().get(), m_address, in GetDescription()
560 if (m_address.IsSectionOffset() && in GetDescription()
[all …]
/external/llvm-project/lldb/source/Plugins/Trace/intel-pt/
DDecodedThread.cpp20 : m_libipt_error_code(libipt_error_code), m_address(address) { in IntelPTError()
26 if (m_address != LLDB_INVALID_ADDRESS && m_address > 0) { in log()
27 write_hex(OS, m_address, HexPrintStyle::PrefixLower, 18); in log()
DDecodedThread.h49 lldb::addr_t m_address; variable
/external/llvm-project/lldb/test/API/functionalities/type_completion/
Dmain.cpp38 CustomString& GetAddress() { return *m_address; } in GetAddress()
39 …NameAndAddress(const char* N, const char* A) : m_name(new CustomString(N)), m_address(new CustomSt… in NameAndAddress()
48 CustomString* m_address; member in NameAndAddress
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugArangeSet.cpp126 DescriptorContainsAddress(dw_addr_t address) : m_address(address) {} in DescriptorContainsAddress()
128 return (m_address >= desc.address) && in operator ()()
129 (m_address < (desc.address + desc.length)); in operator ()()
133 const dw_addr_t m_address; member in DescriptorContainsAddress
/external/llvm-project/lldb/source/Plugins/Language/ObjC/
DCFBasicHash.cpp9 if (m_address != LLDB_INVALID_ADDRESS) { in IsValid()
24 m_address = addr; in Update()
47 addr_t addr = m_address.GetLoadAddress(target); in UpdateFor()
DCFBasicHash.h65 Address m_address = LLDB_INVALID_ADDRESS; variable
/external/llvm-project/lldb/source/Target/
DQueueItem.cpp19 : m_queue_wp(), m_process_wp(), m_item_ref(item_ref), m_address(address), in QueueItem()
39 Address &QueueItem::GetAddress() { return m_address; } in GetAddress()
41 void QueueItem::SetAddress(Address addr) { m_address = addr; } in SetAddress()
DStopInfo.cpp89 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
97 m_address(LLDB_INVALID_ADDRESS), m_break_id(LLDB_INVALID_BREAK_ID), in StopInfoBreakpoint()
117 m_address = bp_site_sp->GetLoadAddress(); in StoreBPInfo()
233 } else if (m_address == LLDB_INVALID_ADDRESS) in GetDescription()
240 m_value, m_address); in GetDescription()
565 lldb::addr_t m_address; // We use this to capture the breakpoint site address member in lldb_private::StopInfoBreakpoint
/external/llvm-project/lldb/source/Expression/
DUserExpression.cpp68 m_address = frame_sp->GetFrameCodeAddress(); in InstallContext()
85 if (m_address.IsValid()) { in LockAndCheckContext()
88 return (Address::CompareLoadAddress(m_address, in LockAndCheckContext()
/external/llvm-project/lldb/include/lldb/Core/
DDisassembler.h65 const Address &GetAddress() const { return m_address; } in GetAddress()
90 m_address = addr; in SetAddress()
213 Address m_address; // The section offset address of this instruction
DValueObjectMemory.h62 Address m_address; ///< The variable that this value object is based upon variable
DValueObjectDynamicValue.h118 Address m_address; ///< The variable that this value object is based upon variable
/external/OpenCSD/decoder/tests/snapshot_parser_lib/source/
Dsnapshot_parser.cpp204 m_address(), m_length(), m_offset(), m_file(), m_space() in DumpSection()
212 m_address = DecodeUnsigned<uint64_t>(v); in Define()
251 struct DumpDef add = { m_address, m_file, m_length, m_offset, m_space}; in End()
262 uint64_t m_address; member in ParserPrivate::DumpSection
/external/llvm-project/lldb/include/lldb/Target/
DQueueItem.h144 lldb_private::Address m_address; variable
/external/llvm-project/lldb/include/lldb/Breakpoint/
DBreakpointLocation.h331 Address m_address; ///< The address defining this location. variable
/external/llvm-project/lldb/include/lldb/Expression/
DUserExpression.h294 Address m_address; ///< The address the process is stopped in. variable

12