Searched defs:signbit (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/v8/src/
H A Dwin32-math.cc96 int signbit(double x) { function in namespace:std
H A Dplatform-solaris.cc62 // access signbit() despite the availability of other C99 math functions.
63 #ifndef signbit
66 int signbit(double x) { function in namespace:std
78 #endif // signbit
/external/v8/src/
H A Dwin32-math.cc97 int signbit(double x) { function
H A Dplatform-solaris.cc63 // access signbit() despite the availability of other C99 math functions.
64 #ifndef signbit
66 int signbit(double x) { function
77 #endif // signbit
/external/tcpdump/
H A Dprint-ntp.c244 int signbit; local
258 signbit = 0;
263 signbit = 1;
270 signbit = 0;
273 signbit = 1;
283 if (signbit)
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DMathExtras.h87 #ifndef signbit
88 inline bool signbit(double x) { return copysign(1.0, x) < 0; } function in namespace:std
105 #ifndef signbit
106 inline bool signbit(double x) { struct ieee_double *p = (struct ieee_double *)&x; return p->dbl_sign; } function in namespace:std
160 inline bool signbit(double num) { return _copysign(1.0, num) < 0; } function in namespace:std
/external/stlport/stlport/stl/
H A D_cmath.h539 template<typename _Tp> inline int __capture_signbit(_Tp __f) { return signbit(__f); }
544 #undef signbit macro
549 template<typename _Tp> inline int signbit(_Tp __f) { return __capture_signbit(__f); } function in namespace:__captured
587 using __captured::signbit;
/external/srec/srec/cfront/
H A Dsp_fft.c82 asr_int32_t signbit = (asr_int32_t)(((asr_uint32_t)x & 0x80000000U) >> i); local
83 xshift |= -signbit;
/external/bison/darwin-lib/
H A Dmath.h2518 # undef signbit
2519 /* GCC 4.0 and newer provides three built-ins for signbit. */
2520 # define signbit(x) \
2526 # undef signbit
2564 # define signbit(x) \
2570 # ifdef signbit
2571 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
2572 # undef signbit macro
2573 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
2577 # if defined signbit
[all...]
/external/bison/lib/
H A Dmath.in.h2206 # undef signbit macro
2207 /* GCC 4.0 and newer provides three built-ins for signbit. */
2208 # define signbit(x) \ macro
2214 # undef signbit macro
2252 # define signbit(x) \ macro
2258 # ifdef signbit
2259 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
2260 # undef signbit macro
2261 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
2265 # if defined signbit
[all...]
/external/bison/linux-lib/
H A Dmath.h2518 # undef signbit macro
2519 /* GCC 4.0 and newer provides three built-ins for signbit. */
2520 # define signbit(x) \ macro
2526 # undef signbit
2564 # define signbit(x) \
2570 # ifdef signbit
2571 _GL_MATH_CXX_REAL_FLOATING_DECL_1 (signbit)
2572 # undef signbit macro
2573 _GL_MATH_CXX_REAL_FLOATING_DECL_2 (signbit)
2577 # if defined signbit
[all...]
/external/qemu/target-arm/
H A Dtranslate.c268 uint32_t signbit; local
273 signbit = 1u << (width - 1);
275 tcg_gen_xori_i32(var, var, signbit);
276 tcg_gen_subi_i32(var, var, signbit);

Completed in 490 milliseconds