Symbol: sqrtf
headers/posix/math.h
189
extern float sqrtf(float x);
src/add-ons/input_server/devices/mouse/movement_maker.cpp
278
acceleration = 1 + sqrtf(xDelta * xDelta
src/apps/diskusage/PieView.cpp
287
float distance = sqrtf(diff.x * diff.x + diff.y * diff.x);
src/apps/icon-o-matic/generic/support/support.h
66
return sqrtf(xDiff * xDiff + yDiff * yDiff);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2052
static float nsvg__vmag(float x, float y) { return sqrtf(x*x + y*y); }
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2097
d = sqrtf(dx*dx + dy*dy);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2116
d = sqrtf(d);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2126
s = sqrtf(sa / sb);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
786
return sqrtf(w*w + h*h) / sqrtf(2.0f);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
859
sl = sqrtf(sw*sw + sh*sh) / sqrtf(2.0f);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
902
float sx = sqrtf(t[0]*t[0] + t[2]*t[2]);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
903
float sy = sqrtf(t[1]*t[1] + t[3]*t[3]);
src/apps/launchbox/LaunchButton.cpp
217
float dist = sqrtf(diff.x * diff.x + diff.y * diff.y);
src/apps/mediaplayer/MainWin.cpp
2281
= sqrtf(moveDelta.x * moveDelta.x + moveDelta.y * moveDelta.y);
src/kits/interface/GraphicsDefs.cpp
47
return (uint8)roundf(sqrtf(
src/kits/interface/ListView.cpp
734
float dragDistance = sqrtf(offset.x * offset.x + offset.y * offset.y);
src/kits/tracker/TrackerInitialState.cpp
769
= floorf((screen.Frame().Width() - 605) * (sqrtf(5) - 1) / 2);
src/libs/icon/shape/VectorPath.cpp
493
float distIn = sqrtf(v.x * v.x + v.y * v.y);
src/libs/icon/shape/VectorPath.cpp
530
float distOut = sqrtf(v.x * v.x + v.y * v.y);
src/system/libroot/posix/musl/complex/ctanhf.c
63
rho = sqrtf(1 + s * s);
src/system/libroot/posix/musl/math/acosf.c
59
s = sqrtf(z);
src/system/libroot/posix/musl/math/acosf.c
65
s = sqrtf(z);
src/system/libroot/posix/musl/math/acoshf.c
20
return log1pf(x-1 + sqrtf((x-1)*(x-1)+2*(x-1)));
src/system/libroot/posix/musl/math/acoshf.c
23
return logf(2*x - 1/(x+sqrtf(x*x-1)));
src/system/libroot/posix/musl/math/asinhf.c
19
x = logf(2*x + 1/(sqrtf(x*x+1)+x));
src/system/libroot/posix/musl/math/asinhf.c
22
x = log1pf(x + x*x/(sqrtf(x*x+1)+1));
src/system/libroot/posix/musl/math/hypotf.c
34
return z*sqrtf((double)x*x + (double)y*y);
src/system/libroot/posix/musl/math/j0f.c
50
return invsqrtpi*cc/sqrtf(x);
src/system/libroot/posix/musl/math/j1f.c
49
return invsqrtpi*cc/sqrtf(x);
src/tests/servers/app/playground/ObjectView.cpp
328
if (sqrtf(offset.x * offset.x + offset.y * offset.y) > 5.0) {