mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-10 09:04:23 +00:00
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);
|
|
}
|
|
}
|
|
}
|