Searched refs:curr_addr (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/contrib/alpine-hal/ |
H A D | al_hal_udma_debug.c | 474 uint32_t *curr_addr = (void*)((uintptr_t)base_ptr + i * desc_size); in al_udma_ring_print() local 478 curr_addr, in al_udma_ring_print() 479 (uint32_t)*curr_addr, in al_udma_ring_print() 480 (uint32_t)*(curr_addr+1), in al_udma_ring_print() 481 (uint32_t)*(curr_addr+2), in al_udma_ring_print() 482 (uint32_t)*(curr_addr+3)); in al_udma_ring_print() 486 curr_addr, in al_udma_ring_print() 487 (uint32_t)*curr_addr, in al_udma_ring_print() 488 (uint32_t)*(curr_addr+1)); in al_udma_ring_print() 492 curr_addr, in al_udma_ring_print() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/PPC64/ |
H A D | ArchitecturePPC64.cpp | 48 const Address &curr_addr) const { in GetBytesToSkip() 49 if (curr_addr.GetFileAddress() == in GetBytesToSkip()
|
H A D | ArchitecturePPC64.h | 28 size_t GetBytesToSkip(Symbol &func, const Address &curr_addr) const override;
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanStepInRange.cpp | 245 lldb::addr_t curr_addr = thread.GetRegisterContext()->GetPC(); in ShouldStop() local 253 if (curr_addr == func_start_address.GetLoadAddress(&GetTarget())) in ShouldStop() 257 if (curr_addr == func_start_address.GetLoadAddress(&GetTarget())) in ShouldStop() 265 GetTarget().GetSectionLoadList().ResolveLoadAddress(curr_addr, in ShouldStop()
|
H A D | Memory.cpp | 92 for (addr_t curr_addr = first_cache_line_addr; cache_idx < num_cache_lines; in Flush() local 93 curr_addr += cache_line_byte_size, ++cache_idx) { in Flush() 94 BlockMap::iterator pos = m_L2_cache.find(curr_addr); in Flush()
|
H A D | Process.cpp | 2141 addr_t curr_addr = addr; in ReadCStringFromMemory() local 2143 size_t length = ReadCStringFromMemory(curr_addr, buf, sizeof(buf), error); in ReadCStringFromMemory() 2150 curr_addr += length; in ReadCStringFromMemory() 2168 addr_t curr_addr = addr; in ReadCStringFromMemory() local 2175 cache_line_size - (curr_addr % cache_line_size); in ReadCStringFromMemory() 2178 size_t bytes_read = ReadMemory(curr_addr, curr_dst, bytes_to_read, error); in ReadCStringFromMemory() 2193 curr_addr += bytes_read; in ReadCStringFromMemory() 2342 const addr_t curr_addr = addr + bytes_written; in WriteMemory() local 2343 if (intersect_addr > curr_addr) { in WriteMemory() 2346 size_t curr_size = intersect_addr - curr_addr; in WriteMemory() [all …]
|
H A D | Target.cpp | 1953 addr_t curr_addr = addr.GetLoadAddress(this); in ReadCStringFromMemory() local 1964 curr_addr += length; in ReadCStringFromMemory() 1967 address = Address(curr_addr); in ReadCStringFromMemory() 1981 addr_t curr_addr = addr.GetLoadAddress(this); in ReadCStringFromMemory() local 1994 cache_line_size - (curr_addr % cache_line_size); in ReadCStringFromMemory() 2013 curr_addr += bytes_read; in ReadCStringFromMemory() 2015 address = Address(curr_addr); in ReadCStringFromMemory()
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/ |
H A D | Architecture.h | 47 virtual size_t GetBytesToSkip(Symbol &func, const Address &curr_addr) const { in GetBytesToSkip() 46 GetBytesToSkip(Symbol & func,const Address & curr_addr) GetBytesToSkip() argument
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeProcessProtocol.cpp | 684 addr_t curr_addr = addr; in ReadCStringFromMemory() local 692 cache_line_size - (curr_addr % cache_line_size); in ReadCStringFromMemory() 694 status = ReadMemory(curr_addr, static_cast<void *>(curr_buffer), in ReadCStringFromMemory() 710 curr_addr += bytes_read; in ReadCStringFromMemory()
|