Searched defs:abs (Results 1 - 17 of 17) sorted by relevance

/external/stlport/stlport/stl/
H A D_cstdlib.h113 inline int abs(int __x) { return _STLP_VENDOR_CSTD::abs(__x); } function
121 # pragma function (abs)
124 //HP-UX native lib has abs() and div() functions in global namespace
131 inline long abs(long __x) { return _STLP_VENDOR_CSTD::labs(__x); } function
143 # pragma intrinsic (abs)
151 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return _STLP_VENDOR_CSTD::llabs(__x); } function
154 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return ::llabs(__x); } function
158 inline _STLP_LONG_LONG abs(_STLP_LONG_LONG __x) { return __x < 0 ? -__x : __x; } function
164 * problem we provide all abs overloa
[all...]
H A D_complex.h735 _Tp _STLP_CALL abs(const complex<_Tp>& __z);
756 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>&);
758 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>&);
769 _Tp _STLP_CALL abs(const complex<_Tp>& __z) function
770 { return _Tp(abs(complex<double>(double(__z.real()), double(__z.imag())))); }
786 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>&);
H A D_cmath.h20 * declaration. cmath have abs overloads and cstdlib a using directive
340 //We have to tell the compilers that abs, acos ... math functions are not intrinsic
345 # pragma function (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
424 inline double abs(double __x) function
427 _STLP_DEF_MATH_INLINE(abs, fabs)
428 # else // __MVS__ has native long double abs?
429 inline float abs(float __x) { return ::fabsf(__x); }
515 # pragma intrinsic (abs, acos, asin, atan, atan2, cos, cosh, exp, fabs, fmod, log, log10, sin, sinh, sqrt, tan, tanh)
525 * problem we provide all abs overload before the 'using' call.
526 * Beware: This header inclusion has to be after all abs overloa
[all...]
/external/chromium/android/
H A Dprefix.h28 inline size_t abs(size_t x) { return x; } function
/external/webkit/JavaScriptCore/wtf/
H A DVector3.h66 double abs() const function in class:WebCore::Vector3
78 double absValue = abs();
133 return (v1 - v2).abs();
/external/skia/src/core/
H A DSk64.cpp36 // get abs
136 void Sk64::abs() function in class:Sk64
333 N.abs();
334 D.abs();
H A DSkFloat.h37 void abs() { fPacked = Abs(fPacked); } function in class:SkFloat
/external/stlport/src/
H A Dcomplex.cpp40 _STLP_DECLSPEC float _STLP_CALL abs(const complex<float>& __z) function
43 _STLP_DECLSPEC double _STLP_CALL abs(const complex<double>& __z) function
48 _STLP_DECLSPEC long double _STLP_CALL abs(const complex<long double>& __z) function
/external/webkit/WebKit/chromium/tests/
H A DKURLTest.cpp331 const char abs[] = "http://www.google.com/"; local
332 WebCore::KURL resolveAbs(emptyBase, abs);
334 EXPECT_STREQ(abs, resolveAbs.string().utf8().data());
/external/kernel-headers/original/linux/
H A Dkernel.h85 #define abs(x) ({ \ macro
H A Dinput.h75 #define EVIOCGABS(abs) _IOR('E', 0x40 + abs, struct input_absinfo) /* get abs value/limits */
76 #define EVIOCSABS(abs) _IOW('E', 0xc0 + abs, struct input_absinfo) /* set abs value/limits */
893 int abs[ABS_MAX + 1]; member in struct:input_dev
/external/qemu/target-arm/
H A Diwmmxt_helper.c84 #define abs(x) (((x) >= 0) ? x : -x) macro
85 #define SADB(SHR) abs((int) ((a >> SHR) & 0xff) - (int) ((b >> SHR) & 0xff))
95 abs((int) ((a >> SHR) & 0xffff) - (int) ((b >> SHR) & 0xffff))
H A Dhelper.c438 uint32_t HELPER(abs)(uint32_t x) function
2388 float32 VFP_HELPER(abs, s)(float32 a)
2393 float64 VFP_HELPER(abs, d)(float64 a)
/external/tcpdump/
H A Dprint-icmp6.c61 #ifndef abs
62 #define abs(a) ((0 < (a)) ? (a) : -(a)) macro
/external/webkit/WebCore/svg/
H A DSVGParserUtilities.cpp212 virtual void svgMoveTo(double x1, double y1, bool closed, bool abs = true) = 0;
213 virtual void svgLineTo(double x1, double y1, bool abs = true) = 0;
214 virtual void svgLineToHorizontal(double, bool /*abs*/ = true) { }
215 virtual void svgLineToVertical(double /*y*/, bool /*abs*/ = true) { }
216 virtual void svgCurveToCubic(double x1, double y1, double x2, double y2, double x, double y, bool abs = true) = 0;
217 virtual void svgCurveToCubicSmooth(double /*x*/, double /*y*/, double /*x2*/, double /*y2*/, bool /*abs*/ = true) { }
218 virtual void svgCurveToQuadratic(double /*x*/, double /*y*/, double /*x1*/, double /*y1*/, bool /*abs*/ = true) { }
219 virtual void svgCurveToQuadraticSmooth(double /*x*/, double /*y*/, bool /*abs*/ = true) { }
220 virtual void svgArcTo(double /*x*/, double /*y*/, double /*r1*/, double /*r2*/, double /*angle*/, bool /*largeArcFlag*/, bool /*sweepFlag*/, bool /*abs*/ = true) { }
685 virtual void svgMoveTo(double x1, double y1, bool closed, bool abs
756 svgLineToHorizontal(double x, bool abs) argument
763 svgLineToVertical(double y, bool abs) argument
781 svgCurveToCubicSmooth(double x, double y, double x2, double y2, bool abs) argument
790 svgCurveToQuadratic(double x, double y, double x1, double y1, bool abs) argument
799 svgCurveToQuadraticSmooth(double x, double y, bool abs) argument
806 svgArcTo(double x, double y, double r1, double r2, double angle, bool largeArcFlag, bool sweepFlag, bool abs) argument
[all...]
/external/v8/benchmarks/
H A Dcrypto.js418 var x = this.abs(), y = a.abs();
432 var x = this.abs();
453 var pm = m.abs();
455 var pt = this.abs();
507 this.abs().divRemTo(a,null,r);
568 x.abs().dlShiftTo(this.m.t,r);
660 BigInteger.prototype.abs = bnAbs;
1243 var i, x = this.abs();
/external/webkit/SunSpider/tests/v8-v4/
H A Dv8-crypto.js410 var x = this.abs(), y = a.abs();
424 var x = this.abs();
445 var pm = m.abs();
447 var pt = this.abs();
499 this.abs().divRemTo(a,null,r);
560 x.abs().dlShiftTo(this.m.t,r);
652 BigInteger.prototype.abs = bnAbs;
1235 var i, x = this.abs();

Completed in 175 milliseconds