Home
last modified time | relevance | path

Searched refs:sc_hypotx (Results 1 – 3 of 3) sorted by relevance

/dports/audio/supercollider/SuperCollider-3.11.0-Source/include/plugin_interface/
H A DSC_InlineBinaryOp.h268 inline float sc_hypotx(float x, float y) { in sc_hypotx() function
279 inline double sc_hypotx(double x, double y) { in sc_hypotx() function
/dports/audio/supercollider/SuperCollider-3.11.0-Source/server/plugins/
H A DBinaryOpUGens.cpp1136 OUT0(0) = sc_isnan(a) || sc_isnan(b) ? NAN : sc_hypotx(a, b); in hypotx_d()
1421 ZOUT0(0) = sc_hypotx(xa, xb); in hypotx_1()
4615 LOOP1(inNumSamples, float xa = ZXP(a); float xb = ZXP(b); ZXP(out) = sc_hypotx(xa, xb);); in hypotx_aa()
4625 LOOP1(inNumSamples, float xa = ZXP(a); ZXP(out) = sc_hypotx(xa, xb);); in hypotx_ak()
4628 LOOP1(inNumSamples, float xa = ZXP(a); ZXP(out) = sc_hypotx(xa, xb); xb += slope;); in hypotx_ak()
4640 LOOP1(inNumSamples, float xb = ZXP(b); ZXP(out) = sc_hypotx(xa, xb);); in hypotx_ka()
4643 LOOP1(inNumSamples, float xb = ZXP(b); ZXP(out) = sc_hypotx(xa, xb); xa += slope;); in hypotx_ka()
4653 LOOP1(inNumSamples, float xb = ZXP(b); ZXP(out) = sc_hypotx(xa, xb);); in hypotx_ia()
4663 LOOP1(inNumSamples, float xa = ZXP(a); ZXP(out) = sc_hypotx(xa, xb);); in hypotx_ai()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/HelpSource/Reference/
H A DServerPluginAPI.schelp289 ## code::sc_hypotx(x, y)::