2019-03-21 02:38:25 +00:00
|
|
|
// Copyright 2019 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
2019-02-16 20:52:24 +00:00
|
|
|
|
2019-03-21 02:39:00 +00:00
|
|
|
#pragma once
|
|
|
|
|
2019-02-16 00:04:11 +00:00
|
|
|
#include <utility>
|
2019-02-15 23:26:41 +00:00
|
|
|
#include "common/common_types.h"
|
|
|
|
|
|
|
|
namespace Common {
|
|
|
|
|
2020-02-10 15:20:40 +00:00
|
|
|
// This function multiplies 2 u64 values and divides it by a u64 value.
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] u64 MultiplyAndDivide64(u64 a, u64 b, u64 d);
|
2020-02-10 15:20:40 +00:00
|
|
|
|
2019-02-16 20:52:24 +00:00
|
|
|
// This function multiplies 2 u64 values and produces a u128 value;
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] u128 Multiply64Into128(u64 a, u64 b);
|
2019-02-15 23:26:41 +00:00
|
|
|
|
2019-02-16 20:52:24 +00:00
|
|
|
// This function divides a u128 by a u32 value and produces two u64 values:
|
|
|
|
// the result of division and the remainder
|
2020-08-14 13:38:45 +00:00
|
|
|
[[nodiscard]] std::pair<u64, u64> Divide128On32(u128 dividend, u32 divisor);
|
2019-02-15 23:26:41 +00:00
|
|
|
|
|
|
|
} // namespace Common
|