Home
last modified time | relevance | path

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

/external/lldb/source/Target/
DMemory.cpp61 const uint32_t cache_line_byte_size = m_cache_line_byte_size; in Flush() local
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()
69 num_cache_lines = ((last_cache_line_addr - first_cache_line_addr)/cache_line_byte_size) + 1; in Flush()
71 num_cache_lines = (UINT64_MAX - first_cache_line_addr + 1)/cache_line_byte_size; in Flush()
76 curr_addr += cache_line_byte_size, ++cache_idx) in Flush()
124 const uint32_t cache_line_byte_size = m_cache_line_byte_size; in Read() local
126 addr_t curr_addr = addr - (addr % cache_line_byte_size); in Read()
143 size_t curr_read_size = cache_line_byte_size - cache_offset; in Read()
158 assert ((curr_addr % cache_line_byte_size) == 0); in Read()
[all …]