slightly more efficient implementation of pad()

This commit is contained in:
Joel Dice 2007-09-19 18:11:19 -06:00
parent 9de7f39ceb
commit a3ef7f2b94

View File

@ -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