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

Function scalbln

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

Multiply by power of two. \param arg number to modify \param exp power of two to multiply with \return \a arg multplied by 2 raised to \a exp template typename enable ::type scalbln(T arg, long exp) { return functions::scalbln(arg, exp); }

Source from the content-addressed store, hash-verified

2648 /// \return \a arg multplied by 2 raised to \a exp
2649// template<typename T> typename enable<half,T>::type scalbln(T arg, long exp) { return functions::scalbln(arg, exp); }
2650 inline half scalbln(half arg, long exp) { return functions::scalbln(arg, exp); }
2651 inline half scalbln(expr arg, long exp) { return functions::scalbln(arg, exp); }
2652
2653 /// Extract exponent.

Callers 2

ldexpFunction · 0.85
scalbnFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected