3615a70cae
This reverts commit 85dbb9559a
.
26 lines
587 B
C#
26 lines
587 B
C#
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);
|
|
}
|
|
}
|
|
}
|