Symbol: sinf
headers/posix/math.h
187
extern float sinf(float x);
src/add-ons/screen_savers/butterfly/Butterfly.cpp
156
- powf(sinf(fBase / 12), 5);
src/add-ons/screen_savers/butterfly/Butterfly.cpp
158
BPoint p(sinf(fBase * 1.01f) * r + cosf(fBase * 1.02f) * 0.2f,
src/add-ons/screen_savers/butterfly/Butterfly.cpp
159
cosf(fBase * 1.01f) * r + sinf(fBase * 1.02f) * 0.2f);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
2106
sinrx = sinf(rotx);
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
2168
dy = sinf(a);
src/apps/icon-o-matic/import_export/svg/nanosvg.h
499
float cs = cosf(a), sn = sinf(a);
src/apps/icon-o-matic/transformable/TransformBoxStates.cpp
514
BPoint from = origin + BPoint(sinf(22.5 * 180.0 / M_PI) * 50.0,
src/preferences/time/AnalogClock.cpp
298
float x1 = fCenterX + sinf(minute * M_PI / 30.0) * fRadius;
src/preferences/time/AnalogClock.cpp
300
float x2 = fCenterX + sinf(minute * M_PI / 30.0) * (fRadius * 0.95);
src/preferences/time/AnalogClock.cpp
316
float x1 = fCenterX + sinf(hour * M_PI / 6.0) * fRadius;
src/preferences/time/AnalogClock.cpp
318
float x2 = fCenterX + sinf(hour * M_PI / 6.0) * (fRadius * 0.9);
src/preferences/time/AnalogClock.cpp
459
offsetX = (radius * 0.7) * sinf((hours * M_PI) / 6.0);
src/preferences/time/AnalogClock.cpp
467
offsetX = (radius * 0.9) * sinf((minutes * M_PI) / 30.0);
src/preferences/time/AnalogClock.cpp
475
offsetX = (radius * 0.95) * sinf((fSeconds * M_PI) / 30.0);
src/system/libroot/posix/musl/complex/__cexpf.c
67
sinf(y) * exp_x * scale1 * scale2);
src/system/libroot/posix/musl/complex/ccoshf.c
53
return CMPLXF(coshf(x) * cosf(y), sinhf(x) * sinf(y));
src/system/libroot/posix/musl/complex/ccoshf.c
59
return CMPLXF(h * cosf(y), copysignf(h, x) * sinf(y));
src/system/libroot/posix/musl/complex/ccoshf.c
67
return CMPLXF(h * h * cosf(y), h * sinf(y));
src/system/libroot/posix/musl/complex/ccoshf.c
86
return CMPLXF((x * x) * cosf(y), x * sinf(y));
src/system/libroot/posix/musl/complex/cexpf.c
51
return CMPLXF(cosf(y), sinf(y));
src/system/libroot/posix/musl/complex/cexpf.c
81
return CMPLXF(exp_x * cosf(y), exp_x * sinf(y));
src/system/libroot/posix/musl/complex/csinhf.c
53
return CMPLXF(sinhf(x) * cosf(y), coshf(x) * sinf(y));
src/system/libroot/posix/musl/complex/csinhf.c
59
return CMPLXF(copysignf(h, x) * cosf(y), h * sinf(y));
src/system/libroot/posix/musl/complex/csinhf.c
67
return CMPLXF(h * cosf(y), h * h * sinf(y));
src/system/libroot/posix/musl/complex/csinhf.c
86
return CMPLXF(x * cosf(y), INFINITY * sinf(y));
src/system/libroot/posix/musl/complex/ctanhf.c
49
return CMPLXF(x, copysignf(0, isinf(y) ? y : sinf(y) * cosf(y)));
src/system/libroot/posix/musl/complex/ctanhf.c
57
return CMPLXF(copysignf(1, x), 4 * sinf(y) * cosf(y) * exp_mx * exp_mx);
src/system/libroot/posix/musl/math/j0f.c
32
s = sinf(x);
src/system/libroot/posix/musl/math/j1f.c
29
s = sinf(x);
src/tests/add-ons/media/media-add-ons/mixer/main.cpp
257
fWaveView->waves[0].SetValue(i, sinf(i * 2 * M_PI / freq));