Ryujinx/Ryujinx.HLE/Utilities/IntUtils.cs

26 lines
587 B
C#
Raw Normal View History

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);
}
}
}