Remove IntUtils and use BitUtils instead. (#774)
This commit is contained in:
parent
72b9f8f0a0
commit
f48df486e2
2 changed files with 3 additions and 28 deletions
|
@ -1,25 +0,0 @@
|
|||
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);
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue