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

/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/webkit/Source/JavaScriptCore/wtf/
H A DMathExtras.h92 #ifndef signbit
93 inline bool signbit(double x) { return copysign(1.0, x) < 0; } function
103 #ifndef signbit
104 inline bool signbit(double x) { struct ieee_double *p = (struct ieee_double *)&x; return p->dbl_sign; } function
142 inline bool signbit(double num) { return _copysign(1.0, num) < 0; } function
255 using std::signbit;
/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/v8/src/
H A Dplatform-solaris.cc61 // access signbit() despite the availability of other C99 math functions.
62 #ifndef signbit
64 int signbit(double x) { function
75 #endif // signbit
H A Dplatform-win32.cc98 int signbit(double x) { function
/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 306 milliseconds