Extract integer and fractional parts. \param arg number to decompress \param iptr address to store integer part at \return fractional part template typename enable ::type modf(T arg, half *iptr) { return functions::modf(arg, iptr); }
| 3650 | // template<typename T> typename enable<half,T>::type modf(T arg, half *iptr) { return functions::modf(arg, iptr); |
| 3651 | //} |
| 3652 | inline half modf(half arg, half* iptr) |
| 3653 | { |
| 3654 | return functions::modf(arg, iptr); |
| 3655 | } |
| 3656 | inline half modf(expr arg, half* iptr) |
| 3657 | { |
| 3658 | return functions::modf(arg, iptr); |
no outgoing calls
no test coverage detected