MCPcopy Create free account
hub / github.com/VCVRack/Rack / pow

Function pow

include/simd/functions.hpp:227–229  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225using std::pow;
226
227inline float_4 pow(float_4 a, float_4 b) {
228 return exp(b * log(a));
229}
230
231inline float_4 pow(float a, float_4 b) {
232 return exp(b * std::log(a));

Callers 15

teVarsInitFunction · 0.85
processMethod · 0.85
drawMethod · 0.85
getDisplayValueMethod · 0.85
setDisplayValueMethod · 0.85
updateZoomMethod · 0.85
stepMethod · 0.85
onActionMethod · 0.85
drawLayerMethod · 0.85
onHoverKeyMethod · 0.85
onDragMoveMethod · 0.85
onDragMoveMethod · 0.85

Calls 2

expFunction · 0.85
logFunction · 0.70

Tested by

no test coverage detected