RetroArch
|
Go to the source code of this file.
Macros | |
#define | M_PI 3.14159265358979323846264338327 |
#define | MAX(a, b) ((a) > (b) ? (a) : (b)) |
#define | MIN(a, b) ((a) < (b) ? (a) : (b)) |
Functions | |
static INLINE uint32_t | next_pow2 (uint32_t v) |
static INLINE uint32_t | prev_pow2 (uint32_t v) |
#define M_PI 3.14159265358979323846264338327 |
next_pow2: : initial value
Get next power of 2 value based on initial value.
Returns: next power of 2 value (derived from ).