Lines Matching refs:total_byte_size
546 size_t total_byte_size = 0; in DoExecute() local
551 total_byte_size = m_prev_byte_size; in DoExecute()
580 if (total_byte_size == 0) { in DoExecute()
581 total_byte_size = item_count * item_byte_size; in DoExecute()
582 if (total_byte_size == 0) in DoExecute()
583 total_byte_size = 32; in DoExecute()
627 total_byte_size = end_addr - addr; in DoExecute()
628 item_count = total_byte_size / item_byte_size; in DoExecute()
633 if (total_byte_size > max_unforced_size && !m_memory_options.m_force) { in DoExecute()
664 data_sp = std::make_shared<DataBufferHeap>(total_byte_size, '\0'); in DoExecute()
669 (uint32_t)total_byte_size); in DoExecute()
687 if (bytes_read < total_byte_size) in DoExecute()
691 (uint64_t)bytes_read, (uint64_t)total_byte_size, addr); in DoExecute()