template <typename T>
T RoundUp(
T x,
u32 base
);
void * RoundUp(
void * x,
u32 base
);
const void * RoundUp(
const void * x,
u32 base
);
| RoundUp ( T, u32 ) | Rounds up the value so that it is a multiple of the specified value. |
| RoundUp ( void *, u32 ) | Rounds up the value so that it is a multiple of the specified value. |
| RoundUp ( const void *, u32 ) | Rounds up the value so that it is a multiple of the specified value. |
CONFIDENTIAL