Searched defs:modf (Results 1 - 3 of 3) sorted by relevance
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | modf.c | 31 * modf(value, iptr) returns the signed fractional part of value 39 modf(value, iptr) function
|
/illumos-gate/usr/src/lib/libm/common/m9x/ |
H A D | modf.c | 30 #pragma weak modf = __modf macro 34 * modf(x, iptr) decomposes x into an integral part and a fractional 38 * If x is infinite, modf sets *iptr to x and returns copysign(0.0,x). 39 * If x is NaN, modf sets *iptr to x and returns x.
|
/illumos-gate/usr/src/head/iso/ |
H A D | math_iso.h | 82 extern double modf __P((double, double *)); 96 #pragma does_not_read_global_data(frexp, ldexp, modf) 180 inline float modf(float __X, float *__Y) { return __modff(__X, __Y); } function 210 inline long double modf(long double __X, long double *__Y) { return function
|
Completed in 105 milliseconds