Remainder of division. \param x first operand \param y second operand \param quo address to store some bits of quotient at \return remainder of floating point division. template typename enable ::type remquo(T x, U y, int *quo) { return functions::remquo(x, y, quo); }
| 2266 | /// \return remainder of floating point division. |
| 2267 | // template<typename T,typename U> typename enable<expr,T,U>::type remquo(T x, U y, int *quo) { return functions::remquo(x, y, quo); } |
| 2268 | inline expr remquo(half x, half y, int *quo) { return functions::remquo(x, y, quo); } |
| 2269 | inline expr remquo(half x, expr y, int *quo) { return functions::remquo(x, y, quo); } |
| 2270 | inline expr remquo(expr x, half y, int *quo) { return functions::remquo(x, y, quo); } |
| 2271 | inline expr remquo(expr x, expr y, int *quo) { return functions::remquo(x, y, quo); } |