Searched refs:fabs (Results 1 - 25 of 126) sorted by relevance

123456

/haiku/src/system/libroot/posix/musl/math/x86/
H A Dfabs.s1 .global fabs
2 .type fabs,@function
3 fabs: label
5 fabs
H A Dfabsf.s5 fabs
H A Dfabsl.s5 fabs
H A Dhypot.s14 fabs
21 fabs
36 fabs
44 fabs
H A Dhypotf.s14 fabs
20 fabs
34 fabs
41 fabs
H A Dacos.s1 # use acos(x) = atan2(fabs(sqrt((1-x)*(1+x))), x)
25 fabs # fix sign of zero (matters in downward rounding mode)
/haiku/src/system/libroot/posix/musl/math/x86_64/
H A Dfabs.s1 .global fabs
2 .type fabs,@function
3 fabs: label
H A Dfabsl.s5 fabs
H A Dacosl.s13 fabs
/haiku/src/system/libroot/posix/musl/math/arm64/
H A Dfabs.c3 double fabs(double x) function
5 __asm__ ("fabs %d0, %d1" : "=w"(x) : "w"(x));
/haiku/src/system/libroot/posix/musl/math/arm/
H A Dfabs.c5 double fabs(double x) function
13 #include "../fabs.c"
/haiku/src/system/libroot/posix/musl/math/ppc/
H A Dfabs.c5 #include "../fabs.c"
9 double fabs(double x) function
11 __asm__ ("fabs %0, %1" : "=d"(x) : "d"(x));
/haiku/src/system/libroot/posix/musl/math/riscv64/
H A Dfabs.c5 double fabs(double x) function
7 __asm__ ("fabs.d %0, %1" : "=f"(x) : "f"(x));
13 #include "../fabs.c"
/haiku/src/system/libroot/posix/musl/math/
H A Dfabs.c4 double fabs(double x) function
H A Dfabsl.c5 return fabs(x);
/haiku/src/servers/app/decorator/
H A DMagneticBorder.cpp62 float leftDist = fabs(frame.left - screenFrame.left);
63 float topDist = fabs(frame.top - screenFrame.top);
64 float rightDist = fabs(frame.right - screenFrame.right);
65 float bottomDist = fabs(frame.bottom - screenFrame.bottom);
/haiku/src/system/libroot/posix/glibc/arch/generic/
H A Ds_csqrt.c74 __real__ res = fabs (sqrt (__real__ x));
80 double r = sqrt (0.5 * fabs (__imag__ x));
100 r = fabs ((0.5 * __imag__ x) / s);
/haiku/src/tools/cppunit/cppunit/
H A DTestAssert.cpp49 if (fabs (expected - actual) > delta)
64 Asserter::failNotEqualIf( fabs( expected - actual ) > delta,
/haiku/src/libs/icon/transformer/
H A DPerspectiveTransformer.cpp308 fValid &= (fabs(w) > 0.00001);
312 fValid &= (fabs(w) > 0.00001);
316 fValid &= (fabs(w) > 0.00001);
320 fValid &= (fabs(w) > 0.00001);
324 fValid &= (fabs(w) > 0.00001);
328 fValid &= (fabs(w) > 0.00001);
332 fValid &= (fabs(w) > 0.00001);
336 fValid &= (fabs(w) > 0.00001);
/haiku/src/kits/interface/layouter/
H A DLayoutOptimizer.h64 return fabs(a - b) < kEqualsEpsilon;
/haiku/headers/libs/agg/
H A Dagg_ellipse.h89 double ra = (fabs(m_rx) + fabs(m_ry)) / 2;
/haiku/src/libs/agg/src/
H A Dagg_arc.cpp89 double ra = (fabs(m_rx) + fabs(m_ry)) / 2;
/haiku/src/apps/icon-o-matic/generic/support/
H A Dsupport.cpp47 currentDist = fabs(point_line_distance(pa.x, pa.y, pb.x, pb.y,
101 int32 rounded = n >= 0.0 ? (int32)fabs(floorf(n)) : (int32)fabs(ceilf(n));
/haiku/src/tests/system/libroot/posix/math/
H A Dmath_test.cpp51 if (fabs(x*x + y*y - 1.0) > 0.000001) {
66 if (fabs(x - y) > 0.000001) {
81 if (fabs(x - y) > 0.000001) {
/haiku/src/servers/app/
H A DAngle.cpp94 value = fabs(value);
134 value = fabs(value);
176 value = fabs(value);

Completed in 204 milliseconds

123456