import { assert } from"../assert.js";
/**
* Align to the nearest number divisible by 32, rounding up
* @param {number} x must be a non-negative integer
* @returns {number}
*/exportfunctionalign_32(x) {
assert.isNonNegativeInteger(x, 'n');
return ((x + 31) >>> 5) << 5
}