Lines Matching refs:addr_t
52 MemoryCache::Flush (addr_t addr, size_t size) in Flush()
62 const addr_t end_addr = (addr + size - 1); in Flush()
63 const addr_t first_cache_line_addr = addr - (addr % cache_line_byte_size); in Flush()
64 const addr_t last_cache_line_addr = end_addr - (end_addr % cache_line_byte_size); in Flush()
74 for (addr_t curr_addr = first_cache_line_addr; in Flush()
85 MemoryCache::AddInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) in AddInvalidRange()
97 MemoryCache::RemoveInvalidRange (lldb::addr_t base_addr, lldb::addr_t byte_size) in RemoveInvalidRange()
116 MemoryCache::Read (addr_t addr, in Read()
126 addr_t curr_addr = addr - (addr % cache_line_byte_size); in Read()
127 addr_t cache_offset = addr - curr_addr; in Read()
208 AllocatedBlock::AllocatedBlock (lldb::addr_t addr, in AllocatedBlock()
226 lldb::addr_t
229 addr_t addr = LLDB_INVALID_ADDRESS; in ReserveBlock()
339 AllocatedBlock::FreeBlock (addr_t addr) in FreeBlock()
393 addr_t addr = m_process.DoAllocateMemory(page_byte_size, permissions, error); in AllocatePage()
412 lldb::addr_t
419 addr_t addr = LLDB_INVALID_ADDRESS; in AllocateMemory()
441 AllocatedMemoryCache::DeallocateMemory (lldb::addr_t addr) in DeallocateMemory()