Searched refs:total_byte_size (Results 1 – 2 of 2) sorted by relevance
285 size_t total_byte_size) { in UInt64ValueIsValidForByteSize() argument286 if (total_byte_size > 8) in UInt64ValueIsValidForByteSize()289 if (total_byte_size == 8) in UInt64ValueIsValidForByteSize()293 (static_cast<uint64_t>(1) << static_cast<uint64_t>(total_byte_size * 8)) - in UInt64ValueIsValidForByteSize()299 size_t total_byte_size) { in SInt64ValueIsValidForByteSize() argument300 if (total_byte_size > 8) in SInt64ValueIsValidForByteSize()303 if (total_byte_size == 8) in SInt64ValueIsValidForByteSize()307 << static_cast<uint64_t>(total_byte_size * 8 - 1)) - in SInt64ValueIsValidForByteSize()
544 size_t total_byte_size = 0; in DoExecute() local549 total_byte_size = m_prev_byte_size; in DoExecute()578 if (total_byte_size == 0) { in DoExecute()579 total_byte_size = item_count * item_byte_size; in DoExecute()580 if (total_byte_size == 0) in DoExecute()581 total_byte_size = 32; in DoExecute()616 total_byte_size = end_addr - addr; in DoExecute()617 item_count = total_byte_size / item_byte_size; in DoExecute()622 if (total_byte_size > max_unforced_size && !m_memory_options.m_force) { in DoExecute()653 data_sp = std::make_shared<DataBufferHeap>(total_byte_size, '\0'); in DoExecute()[all …]