MCPcopy Create free account
hub / github.com/ARM-software/ComputeLibrary / remquo

Function remquo

include/half/half.hpp:2255–2255  ·  view source on GitHub ↗

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); }

Source from the content-addressed store, hash-verified

2253 /// \return remainder of floating point division.
2254// template<typename T,typename U> typename enable<expr,T,U>::type remquo(T x, U y, int *quo) { return functions::remquo(x, y, quo); }
2255 inline expr remquo(half x, half y, int *quo) { return functions::remquo(x, y, quo); }
2256 inline expr remquo(half x, expr y, int *quo) { return functions::remquo(x, y, quo); }
2257 inline expr remquo(expr x, half y, int *quo) { return functions::remquo(x, y, quo); }
2258 inline expr remquo(expr x, expr y, int *quo) { return functions::remquo(x, y, quo); }

Callers 1

remquoMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected