diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-10 16:20:40 +0100 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-06-18 22:29:18 +0200 |
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 yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.gz yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.bz2 yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.lz yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.xz yuzu-e3524d114246a9221c766bdf1992777b208cbd67.tar.zst yuzu-e3524d114246a9221c766bdf1992777b208cbd67.zip |
Diffstat (limited to 'src/common/uint128.h')
-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 @@ namespace Common { +// This function multiplies 2 u64 values and divides it by a u64 value. +u64 MultiplyAndDivide64(u64 a, u64 b, u64 d); + // This function multiplies 2 u64 values and produces a u128 value; u128 Multiply64Into128(u64 a, u64 b); |