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

Function frexp

include/half/half.hpp:2618–2618  ·  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

2616 /// \return significant in range [0.5, 1)
2617// template<typename T> typename enable<half,T>::type frexp(T arg, int *exp) { return functions::frexp(arg, exp); }
2618 inline half frexp(half arg, int *exp) { return functions::frexp(arg, exp); }
2619 inline half frexp(expr arg, int *exp) { return functions::frexp(arg, exp); }
2620
2621 /// Multiply by power of two.

Callers 7

configureMethod · 0.85
validate_argumentsFunction · 0.85
configureMethod · 0.85
mulFunction · 0.85
float2half_implFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected