Lines Matching defs:total_byte_size
544 size_t total_byte_size = 0;
549 total_byte_size = m_prev_byte_size;
578 if (total_byte_size == 0) {
579 total_byte_size = item_count * item_byte_size;
580 if (total_byte_size == 0)
581 total_byte_size = 32;
616 total_byte_size = end_addr - addr;
617 item_count = total_byte_size / item_byte_size;
622 if (total_byte_size > max_unforced_size && !m_memory_options.m_force) {
653 data_sp = std::make_shared<DataBufferHeap>(total_byte_size, '\0');
658 (uint32_t)total_byte_size);
676 if (bytes_read < total_byte_size)
680 (uint64_t)bytes_read, (uint64_t)total_byte_size, addr);