Returns cosine of x. x is in radians.
Compute the absolute value.
x | fabs(x) |
---|---|
±0.0 | +0.0 |
±∞ | +∞ |
It is implemented as a compiler intrinsic.
Compute n * 2exp References: frexp
Rounds x to the nearest integer value, using the current rounding mode. If the return value is not equal to x, the FE_INEXACT exception is raised. nearbyint performs the same operation, but does not set the FE_INEXACT exception.
Returns x rounded to a long value using the current rounding mode. If the integer value of x is greater than long.max, the result is indeterminate.
Returns x rounded to a long value using the FE_TONEAREST rounding mode. If the integer value of x is greater than long.max, the result is indeterminate.
Returns sine of x. x is in radians.
Compute square root of x.
Round argument to a specific precision.
Building block functions, they translate to a single x87 instruction.
Builtin mathematical intrinsics