Lines Matching defs:byte_size
102 lldb::addr_t byte_size) {
103 if (byte_size > 0) {
105 InvalidRanges::Entry range(base_addr, byte_size);
112 lldb::addr_t byte_size) {
113 if (byte_size > 0) {
119 entry->GetByteSize() == byte_size)
268 AllocatedBlock::AllocatedBlock(lldb::addr_t addr, uint32_t byte_size,
270 : m_range(addr, byte_size), m_permissions(permissions),
275 assert(byte_size > chunk_size);
361 AllocatedMemoryCache::AllocatePage(uint32_t byte_size, uint32_t permissions,
365 const size_t num_pages = (byte_size + page_size - 1) / page_size;
373 "Process::DoAllocateMemory (byte_size = 0x%8.8" PRIx32
387 lldb::addr_t AllocatedMemoryCache::AllocateMemory(size_t byte_size,
398 addr = (*pos).second->ReserveBlock(byte_size);
404 AllocatedBlockSP block_sp(AllocatePage(byte_size, permissions, 16, error));
407 addr = block_sp->ReserveBlock(byte_size);
411 "AllocatedMemoryCache::AllocateMemory (byte_size = 0x%8.8" PRIx32
413 (uint32_t)byte_size, GetPermissionsAsCString(permissions),