diff options
| author | 2020-02-10 11:20:40 -0400 | |
|---|---|---|
| committer | 2020-06-18 16:29:18 -0400 | |
| commit | e3524d114246a9221c766bdf1992777b208cbd67 (patch) | |
| tree | 1454fe38bdafd94ada74ae5f1209a7466bbf4e78 /src/common/uint128.h | |
| parent | Common: Implement WallClock Interface and implement a native clock for x64 (diff) | |
| download | yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.gz yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.xz yuzu-e3524d114246a9221c766bdf1992777b208cbd67.zip | |
Common: Refactor & Document Wall clock.
Diffstat (limited to '')
| -rw-r--r-- | src/common/uint128.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/uint128.h b/src/common/uint128.h index a3be2a2cb..503cd2d0c 100644 --- a/src/common/uint128.h +++ b/src/common/uint128.h | |||
| @@ -9,6 +9,9 @@ | |||
| 9 | 9 | ||
| 10 | namespace Common { | 10 | namespace Common { |
| 11 | 11 | ||
| 12 | // This function multiplies 2 u64 values and divides it by a u64 value. | ||
| 13 | u64 MultiplyAndDivide64(u64 a, u64 b, u64 d); | ||
| 14 | |||
| 12 | // This function multiplies 2 u64 values and produces a u128 value; | 15 | // This function multiplies 2 u64 values and produces a u128 value; |
| 13 | u128 Multiply64Into128(u64 a, u64 b); | 16 | u128 Multiply64Into128(u64 a, u64 b); |
| 14 | 17 | ||