Symbol: fabsf
headers/posix/math.h
152
extern float fabsf(float x);
src/add-ons/input_server/devices/wacom/TabletDevice.cpp
569
absDeltaX = fabsf(deltaX);
src/add-ons/input_server/devices/wacom/TabletDevice.cpp
570
absDeltaY = fabsf(deltaY);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
1702
strokeDashArray[count++] = fabsf(nsvg__parseCoordinate(p, item, 0.0f, nsvg__actualLength(p)));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2080
rx = fabsf(args[0]); // y radius
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2081
ry = fabsf(args[1]); // x radius
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2083
fa = fabsf(args[3]) > 1e-6 ? 1 : 0; // Large arc
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2084
fs = fabsf(args[4]) > 1e-6 ? 1 : 0; // Sweep direction
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2159
ndivs = (int)(fabsf(da) / (NSVG_PI*0.5f) + 1.0f);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2161
kappa = fabsf(4.0f / 3.0f * (1.0f - cosf(hda)) / sinf(hda));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2331
if (strcmp(attr[i], "rx") == 0) rx = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualWidth(p)));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2332
if (strcmp(attr[i], "ry") == 0) ry = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualHeight(p)));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2381
if (strcmp(attr[i], "r") == 0) r = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualLength(p)));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2412
if (strcmp(attr[i], "rx") == 0) rx = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualWidth(p)));
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2413
if (strcmp(attr[i], "ry") == 0) ry = fabsf(nsvg__parseCoordinate(p, attr[i+1], 0.0f, nsvg__actualHeight(p)));
src/system/libroot/posix/glibc/arch/generic/s_clog10f.c
40
__real__ result = -1.0 / fabsf (__real__ x);
src/system/libroot/posix/glibc/arch/generic/s_clogf.c
40
__real__ result = -1.0 / fabsf (__real__ x);
src/system/libroot/posix/musl/complex/ccoshf.c
58
h = expf(fabsf(x)) * 0.5f;
src/system/libroot/posix/musl/complex/ccoshf.c
62
z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
src/system/libroot/posix/musl/complex/csinhf.c
58
h = expf(fabsf(x)) * 0.5f;
src/system/libroot/posix/musl/complex/csinhf.c
62
z = __ldexp_cexpf(CMPLXF(fabsf(x), y), -1);
src/system/libroot/posix/musl/complex/csqrtf.c
61
return CMPLXF(fabsf(b - b), copysignf(a, b));
src/system/libroot/posix/musl/complex/csqrtf.c
80
return CMPLXF(fabsf(b) / (2.0 * t), copysignf(t, b));
src/system/libroot/posix/musl/complex/ctanhf.c
56
float exp_mx = expf(-fabsf(x));
src/system/libroot/posix/musl/math/asinf.c
55
z = (1 - fabsf(x))*0.5f;
src/system/libroot/posix/musl/math/atan2f.c
75
z = atanf(fabsf(y/x));
src/system/libroot/posix/musl/math/atanf.c
65
x = fabsf(x);
src/system/libroot/posix/musl/math/erff.c
105
x = fabsf(x);
src/system/libroot/posix/musl/math/erff.c
91
s = fabsf(x) - 1;
src/system/libroot/posix/musl/math/j0f.c
73
x = fabsf(x);
src/system/libroot/posix/musl/math/j1f.c
76
return common(ix, fabsf(x), 0, sign);
src/system/libroot/posix/musl/math/jnf.c
131
tmp = nf*logf(fabsf(w));
src/system/libroot/posix/musl/math/jnf.c
153
if (fabsf(z) >= fabsf(w))
src/system/libroot/posix/musl/math/jnf.c
44
x = fabsf(x);