| 12345678910111213141516171819202122232425 |
- namespace Ryujinx.HLE.Utilities
- {
- static class IntUtils
- {
- public static int AlignUp(int Value, int Size)
- {
- return (Value + (Size - 1)) & ~(Size - 1);
- }
- public static long AlignUp(long Value, int Size)
- {
- return (Value + (Size - 1)) & ~((long)Size - 1);
- }
- public static int AlignDown(int Value, int Size)
- {
- return Value & ~(Size - 1);
- }
- public static long AlignDown(long Value, int Size)
- {
- return Value & ~((long)Size - 1);
- }
- }
- }
|