Lines Matching refs:byte_size
102 lldb::addr_t byte_size) { in AddInvalidRange() argument
103 if (byte_size > 0) { in AddInvalidRange()
105 InvalidRanges::Entry range(base_addr, byte_size); in AddInvalidRange()
112 lldb::addr_t byte_size) { in RemoveInvalidRange() argument
113 if (byte_size > 0) { in RemoveInvalidRange()
119 entry->GetByteSize() == byte_size) in RemoveInvalidRange()
253 AllocatedBlock::AllocatedBlock(lldb::addr_t addr, uint32_t byte_size, in AllocatedBlock() argument
255 : m_range(addr, byte_size), m_permissions(permissions), in AllocatedBlock()
260 assert(byte_size > chunk_size); in AllocatedBlock()
346 AllocatedMemoryCache::AllocatePage(uint32_t byte_size, uint32_t permissions, in AllocatePage() argument
350 const size_t num_pages = (byte_size + page_size - 1) / page_size; in AllocatePage()
372 lldb::addr_t AllocatedMemoryCache::AllocateMemory(size_t byte_size, in AllocateMemory() argument
383 addr = (*pos).second->ReserveBlock(byte_size); in AllocateMemory()
389 AllocatedBlockSP block_sp(AllocatePage(byte_size, permissions, 16, error)); in AllocateMemory()
392 addr = block_sp->ReserveBlock(byte_size); in AllocateMemory()
398 (uint32_t)byte_size, GetPermissionsAsCString(permissions), in AllocateMemory()