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

1234

/external/vixl/examples/
H A Dabs.cc33 // int64_t abs(int64_t x)
54 Label abs; local
55 masm.Bind(&abs);
62 simulator.RunFrom(abs.target());
63 printf("abs(%ld) = %ld\n", input_value, simulator.xreg(0));
/external/eigen/Eigen/src/plugins/
H A DArrayCwiseUnaryOps.h11 abs() const function
21 * \sa abs(), square()
/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>&);
/external/deqp/framework/common/
H A DtcuInterval.cpp143 Interval abs (const Interval& x) function in namespace:tcu
145 const Interval mono = applyMonotone(std::abs, x);
H A DtcuVectorUtil.hpp40 inline float abs (float f) { return deFloatAbs(f); } function in namespace:tcu
360 // Absolute difference (abs(a - b))
451 TCU_DECLARE_VECTOR_UNARY_FUNC(abs, de::abs)
/external/deqp/framework/delibs/decpp/
H A DdeDefs.hpp36 template<typename T> inline T abs (T x) { return x < T(0) ? -x : x; } function in namespace:de
/external/chromium_org/v8/src/
H A Dmath.js15 var $abs = MathAbs;
344 "abs", MathAbs,
/external/eigen/Eigen/src/Eigen2Support/
H A DCwiseOperators.h20 /** \deprecated ArrayBase::abs() */
23 Cwise<ExpressionType>::abs() const function in class:Eigen::Cwise
/external/arduino/hardware/arduino/cores/arduino/
H A Dwiring.h70 // undefine stdlib's abs if encountered
71 #ifdef abs
72 #undef abs macro
77 #define abs(x) ((x)>0?(x):-(x)) macro
/external/chromium_org/third_party/WebKit/Source/platform/weborigin/
H A DKURLTest.cpp364 const char abs[] = "http://www.google.com/"; local
365 blink::KURL resolveAbs(emptyBase, abs);
367 EXPECT_STREQ(abs, resolveAbs.string().utf8().data());
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; local
407 fprintf(f, ", %s%ssrc", neg, abs);
416 abs);
440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; local
442 fprintf(f, ", %s%ssrc", neg, abs);
448 rc_swizzle_char(GET_SWZ(inst->Alpha.Arg[arg].Swizzle, 0)), abs);
/external/chromium_org/third_party/skia/src/core/
H A DSkFloat.h28 void abs() { fPacked = Abs(fPacked); } function in class:SkFloat
/external/chromium_org/third_party/webrtc/modules/video_capture/
H A Ddevice_info_impl.cc18 #ifndef abs
19 #define abs(a) (a>=0?a:-a) macro
174 if ((diffHeight >= 0 && diffHeight <= abs(currentbestDiffHeight)) // Height better or equalt that previouse.
180 if ((diffWidth >= 0 && diffWidth <= abs(currentbestDiffWith)) // Width better or equal
308 if ((diffHeight >= 0 && diffHeight <= abs(currentbestDiffHeight)) // Height better or equal than previous.
314 if ((diffWidth >= 0 && diffWidth <= abs(currentbestDiffWith)) // Width better or equal
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_program_print.c405 const char* abs = inst->RGB.Arg[arg].Abs ? "|" : ""; local
407 fprintf(f, ", %s%ssrc", neg, abs);
416 abs);
440 const char* abs = inst->Alpha.Arg[arg].Abs ? "|" : ""; local
442 fprintf(f, ", %s%ssrc", neg, abs);
448 rc_swizzle_char(GET_SWZ(inst->Alpha.Arg[arg].Swizzle, 0)), abs);
/external/opencv/cxcore/src/
H A D_cxcore.h161 inline double abs(CvComplex32f a) function
229 inline double abs(CvComplex64f a) function
/external/skia/src/core/
H A DSkFloat.h28 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/chromium_org/third_party/angle/src/common/
H A Dmathutil.h153 unsigned int abs = fp32i & 0x7FFFFFFF; local
155 if(abs > 0x47FFEFFF) // Infinity
159 else if(abs < 0x38800000) // Denormal
161 unsigned int mantissa = (abs & 0x007FFFFF) | 0x00800000;
162 int e = 113 - (abs >> 23);
166 abs = mantissa >> e;
170 abs = 0;
173 return sign | (abs + 0x00000FFF + ((abs >> 13) & 1)) >> 13;
177 return sign | (abs
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h80 GLuint abs:1; /* source only */ member in struct:brw_reg
209 reg.abs = 0;
713 reg.abs = 1;
/external/chromium_org/third_party/mesa/src/src/mesa/program/
H A Dprog_print.c598 const char *abs = srcReg->Abs ? "|" : ""; local
601 abs,
607 abs);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dcoretype.h126 /*@null@*/ /*@only@*/ yasm_expr *abs; member in struct:yasm_value
143 * should be shifted, that must be in the abs expr, not here!
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp3.cpp269 constexpr int abs(int x) { function in namespace:std_example
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dbrw_eu.h80 GLuint abs:1; /* source only */ member in struct:brw_reg
209 reg.abs = 0;
713 reg.abs = 1;
/external/mesa3d/src/mesa/program/
H A Dprog_print.c598 const char *abs = srcReg->Abs ? "|" : ""; local
601 abs,
607 abs);

Completed in 1200 milliseconds

1234