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