MCPcopy Create free account
hub / github.com/arrayfire/arrayfire / frexp

Function frexp

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

Decompress floating point number. \param arg number to decompress \param exp address to store exponent at \return significant in range [0.5, 1) template typename enable ::type frexp(T arg, int *exp) { return functions::frexp(arg, exp); }

Source from the content-addressed store, hash-verified

2629 /// \return significant in range [0.5, 1)
2630// template<typename T> typename enable<half,T>::type frexp(T arg, int *exp) { return functions::frexp(arg, exp); }
2631 inline half frexp(half arg, int *exp) { return functions::frexp(arg, exp); }
2632 inline half frexp(expr arg, int *exp) { return functions::frexp(arg, exp); }
2633
2634 /// Multiply by power of two.

Callers 1

float2half_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected