HomeSort by relevance Sort by last modified time
    Searched refs:signbit (Results 26 - 50 of 122) sorted by null

12 3 4 5

  /external/v8/src/
win32-math.cc 97 int signbit(double x) { function
platform.h 48 # ifndef signbit
49 int signbit(double x);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
abs.pass.cpp 39 assert(!std::signbit(r));
norm.pass.cpp 39 assert(!std::signbit(r));
polar.pass.cpp 58 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
69 if (std::signbit(r) || classify(theta) == inf || classify(theta) == NaN)
  /external/tcpdump/
print-ntp.c 244 int signbit; local
258 signbit = 0;
263 signbit = 1;
270 signbit = 0;
273 signbit = 1;
283 if (signbit)
  /external/compiler-rt/test/Unit/
powidf2_test.c 25 int correct = (x == expected) && (signbit(x) == signbit(expected));
powisf2_test.c 25 int correct = (x == expected) && (signbit(x) == signbit(expected));
powitf2_test.c 27 int correct = (x == expected) && (signbit(x) == signbit(expected));
powixf2_test.c 27 int correct = (x == expected) && (signbit(x) == signbit(expected));
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrt.c 75 if (signbit(a))
s_csqrtl.c 75 if (signbit(a))
  /external/chromium_org/third_party/WebKit/Source/wtf/
MathExtras.h 87 #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/chromium_org/third_party/WebKit/Source/core/xml/
XPathValue.cpp 130 return std::signbit(m_number) ? "-Infinity" : "Infinity";
  /external/bison/darwin-lib/
math.h 2572 # undef signbit macro
    [all...]
  /external/bison/lib/
math.in.h 2206 # undef signbit macro
2208 # define signbit macro
2214 # undef signbit macro
2252 # define signbit macro
2260 # undef signbit macro
    [all...]
  /external/bison/linux-lib/
math.h 2518 # undef signbit macro
2520 # define signbit macro
2572 # undef signbit macro
    [all...]
  /external/stlport/stlport/stl/
_cmath.h 539 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;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_cmath.h 539 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;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
math.h 226 # define signbit(x) \ macro
229 # define signbit(x) \ macro

Completed in 1237 milliseconds

12 3 4 5