Math.
More...
Go to the source code of this file.
|
#define | abs(n) __builtin_abs ((n)) |
|
#define | floor(f) __builtin_floor ((f)) |
|
#define | ceil(f) __builtin_ceil ((f)) |
|
#define | exp(x) __builtin_exp ((x)) |
|
#define | log10(x) __builtin_log10 ((x)) |
|
◆ abs
#define abs |
( |
|
n | ) |
__builtin_abs ((n)) |
Returns the absolute value of the specified integer.
- Parameters
-
- Returns
- The absolut value of n.
◆ ceil
#define ceil |
( |
|
f | ) |
__builtin_ceil ((f)) |
Returns the smallest integer value greater than or equal to x.
- Parameters
-
f | The floating point number to round up. |
- Returns
- The smallest integer value greater than or equal to x.
◆ exp
#define exp |
( |
|
x | ) |
__builtin_exp ((x)) |
Calculates the value of e raised to the power of x.
- Parameters
-
x | The value to raise e by. |
- Returns
- The value of e rasied to the power of x.
◆ floor
#define floor |
( |
|
f | ) |
__builtin_floor ((f)) |
Rounds a floating point number down.
- Parameters
-
f | The floating point number to round down. |
- Returns
- f rounded down to its largest integral value.
◆ log10
#define log10 |
( |
|
x | ) |
__builtin_log10 ((x)) |
Returns the common logarithm (base-10 logarithm) of x.
- Parameters
-
x | Value whose logarithm is calculated. |
- Returns
- The common logarithm of x.