mirror of
https://github.com/corda/corda.git
synced 2025-04-04 18:09:17 +00:00
slightly more efficient implementation of pad()
This commit is contained in:
parent
9de7f39ceb
commit
a3ef7f2b94
@ -69,8 +69,7 @@ avg(unsigned a, unsigned b)
|
||||
inline unsigned
|
||||
pad(unsigned n)
|
||||
{
|
||||
n += BytesPerWord - 1;
|
||||
return n - (n % BytesPerWord);
|
||||
return (n + (BytesPerWord - 1)) & ~(BytesPerWord - 1);
|
||||
}
|
||||
|
||||
inline unsigned
|
||||
|
Loading…
x
Reference in New Issue
Block a user