HomeSort by relevance Sort by last modified time
    Searched full:signbit (Results 126 - 150 of 311) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/
cmath 547 #undef signbit
654 signbit(float __x)
658 signbit(double __x)
662 signbit(long double __x)
668 signbit(_Tp __x)
854 signbit(_Tp __f)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/
cmath 547 #undef signbit
654 signbit(float __x)
658 signbit(double __x)
662 signbit(long double __x)
668 signbit(_Tp __x)
854 signbit(_Tp __f)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/
cmath 547 #undef signbit
654 signbit(float __x)
658 signbit(double __x)
662 signbit(long double __x)
668 signbit(_Tp __x)
854 signbit(_Tp __f)
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/
cmath 547 #undef signbit
655 signbit(float __x)
659 signbit(double __x)
663 signbit(long double __x)
669 signbit(_Tp __x)
855 signbit(_Tp __f)
    [all...]
  /external/v8/src/compiler/
node-matchers.h 158 return this->Is(0.0) && std::signbit(this->Value());
161 bool IsZero() const { return this->Is(0.0) && !std::signbit(this->Value()); }
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
math.h 230 # define signbit(x) \ macro
233 # define signbit(x) \ macro
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
math.h 231 # define signbit(x) \ macro
234 # define signbit(x) \ macro
  /bionic/libc/tools/
posix-2013.txt 951 signbit
  /external/compiler-rt/lib/builtins/
divdf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
divsf3.c 29 const rep_t quotientSign = (toRep(a) ^ toRep(b)) & signBit;
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 201 static_assert((std::is_same<decltype(signbit((float)0)), bool>::value), "");
202 static_assert((std::is_same<decltype(signbit((double)0)), bool>::value), "");
203 static_assert((std::is_same<decltype(signbit((long double)0)), bool>::value), "");
204 assert(signbit(-1.0) == true);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.c.headers/
math_h.pass.cpp 199 static_assert((std::is_same<decltype(signbit((float)0)), bool>::value), "");
200 static_assert((std::is_same<decltype(signbit((double)0)), bool>::value), "");
201 static_assert((std::is_same<decltype(signbit((long double)0)), bool>::value), "");
202 assert(signbit(-1.0) == true);
  /ndk/sources/cxx-stl/stlport/src/
num_put_float.cpp 175 static bool _Stl_is_neg_inf(double x) { return !isfinite(x) && signbit(x); }
176 static bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
197 static inline bool _Stl_is_neg_inf(double x) { return isinf(x) && signbit(x); }
198 static inline bool _Stl_is_neg_nan(double x) { return isnan(x) && signbit(x); }
    [all...]
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
mparith3.go 219 if fvp.Val.Signbit() {
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
mparith3.go 216 if fvp.Val.Signbit() {
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/gc/
mparith3.go 219 if fvp.Val.Signbit() {
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
mparith3.go 216 if fvp.Val.Signbit() {
  /external/libxml2/
trionan.c 565 #if defined(fpclassify) && defined(signbit)
567 * C99 defines fpclassify() and signbit() as a macros
569 *is_negative = signbit(number);
  /prebuilts/go/darwin-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
float.go 326 // Signbit returns true if x is negative or negative zero.
327 func (x *Float) Signbit() bool {
580 z.neg = math.Signbit(x) // handle -0, -Inf correctly
657 // SetInf sets z to the infinite Float -Inf if signbit is
658 // set, or +Inf if signbit is not set, and returns z. The
661 func (z *Float) SetInf(signbit bool) *Float {
664 z.neg = signbit
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
float.go 323 // Signbit returns true if x is negative or negative zero.
324 func (x *Float) Signbit() bool {
577 z.neg = math.Signbit(x) // handle -0, -Inf correctly
654 // SetInf sets z to the infinite Float -Inf if signbit is
655 // set, or +Inf if signbit is not set, and returns z. The
658 func (z *Float) SetInf(signbit bool) *Float {
661 z.neg = signbit
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
float.go 323 // Signbit returns true if x is negative or negative zero.
324 func (x *Float) Signbit() bool {
577 z.neg = math.Signbit(x) // handle -0, -Inf correctly
654 // SetInf sets z to the infinite Float -Inf if signbit is
655 // set, or +Inf if signbit is not set, and returns z. The
658 func (z *Float) SetInf(signbit bool) *Float {
661 z.neg = signbit
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
float.go 326 // Signbit returns true if x is negative or negative zero.
327 func (x *Float) Signbit() bool {
580 z.neg = math.Signbit(x) // handle -0, -Inf correctly
657 // SetInf sets z to the infinite Float -Inf if signbit is
658 // set, or +Inf if signbit is not set, and returns z. The
661 func (z *Float) SetInf(signbit bool) *Float {
664 z.neg = signbit
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
float.go 323 // Signbit returns true if x is negative or negative zero.
324 func (x *Float) Signbit() bool {
577 z.neg = math.Signbit(x) // handle -0, -Inf correctly
654 // SetInf sets z to the infinite Float -Inf if signbit is
655 // set, or +Inf if signbit is not set, and returns z. The
658 func (z *Float) SetInf(signbit bool) *Float {
661 z.neg = signbit
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
float.go 323 // Signbit returns true if x is negative or negative zero.
324 func (x *Float) Signbit() bool {
577 z.neg = math.Signbit(x) // handle -0, -Inf correctly
654 // SetInf sets z to the infinite Float -Inf if signbit is
655 // set, or +Inf if signbit is not set, and returns z. The
658 func (z *Float) SetInf(signbit bool) *Float {
661 z.neg = signbit
    [all...]
  /toolchain/binutils/binutils-2.25/bfd/
coff-arm.c 659 bfd_vma signbit; local
668 signbit = 0x00000100;
674 signbit = 0x00000800;
680 signbit = 0x00400000;
716 relocation = (relocation ^ signbit) - signbit; /* Sign extend. */
729 if (relocation & signbit)
    [all...]

Completed in 1167 milliseconds

1 2 3 4 56 7 8 91011>>