HomeSort by relevance Sort by last modified time
    Searched full:signbit (Results 51 - 75 of 212) sorted by null

1 23 4 5 6 7 8 9

  /external/qemu/target-arm/
neon_helper.c 16 #define SIGNBIT (uint32_t)0x80000000
218 if (((res ^ a) & SIGNBIT) && !((a ^ b) & SIGNBIT)) {
220 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
299 if (((res ^ a) & SIGNBIT) && ((a ^ b) & SIGNBIT)) {
301 res = ~(((int32_t)a >> 31) ^ SIGNBIT);
924 dest = (val >> 31) ^ ~SIGNBIT;
937 dest = (val >> 31) ^ ~SIGNBIT;
1137 if ((tmp ^ (tmp << 1)) & SIGNBIT) { \
    [all...]
  /bionic/tests/
math_test.cpp 94 /* TODO: stlport breaks the signbit macro
95 TEST(math, signbit) {
96 ASSERT_EQ(0, signbit(0.0f));
97 ASSERT_EQ(0, signbit(0.0));
99 ASSERT_EQ(0, signbit(1.0f));
100 ASSERT_EQ(0, signbit(1.0));
102 ASSERT_NE(0, signbit(-1.0f));
103 ASSERT_NE(0, signbit(-1.0));
  /external/compiler-rt/lib/
fp_lib.h 98 #define signBit (REP_C(1) << (significandBits + exponentBits))
99 #define absMask (signBit - 1U)
extendsfdf2.c 134 // Apply the signbit to (dst_t)abs(a).
  /external/llvm/lib/Target/ARM/MCTargetDesc/
ARMAsmBackend.cpp 415 uint32_t signBit = (offset & 0x800000) >> 23;
417 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
419 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
424 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10Bits);
446 uint32_t signBit = (offset & 0x400000) >> 22;
448 uint32_t J1Bit = (I1Bit ^ 0x1) ^ signBit;
450 uint32_t J2Bit = (I2Bit ^ 0x1) ^ signBit;
455 uint32_t firstHalf = (((uint16_t)signBit << 10) | (uint16_t)imm10HBits);
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_csqrt.c 75 if (signbit(a))
s_csqrtf.c 66 if (signbit(a))
s_csqrtl.c 75 if (signbit(a))
  /external/v8/src/
win32-math.cc 97 int signbit(double x) { function
platform-solaris.cc 63 // access signbit() despite the availability of other C99 math functions.
64 #ifndef signbit
66 int signbit(double x) { function
77 #endif // signbit
  /external/webkit/Source/WebCore/xml/
XPathValue.cpp 133 return signbit(m_number) ? "-Infinity" : "Infinity";
  /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));
  /external/webkit/Source/JavaScriptCore/runtime/
MathObject.cpp 180 if (val > result || (val == 0 && result == 0 && !signbit(val)))
196 if (val < result || (val == 0 && result == 0 && signbit(val)))
  /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/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp 190 SDValue SignBit = DAG.getNode(ISD::SHL, dl, RVT, DAG.getConstant(1, RVT),
193 SignBit = DAG.getNode(ISD::AND, dl, RVT, RHS, SignBit);
198 SignBit = DAG.getNode(ISD::SRL, dl, RVT, SignBit,
200 TLI.getShiftAmountTy(SignBit.getValueType())));
201 SignBit = DAG.getNode(ISD::TRUNCATE, dl, LVT, SignBit);
203 SignBit = DAG.getNode(ISD::ANY_EXTEND, dl, LVT, SignBit);
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/include/
cmath 140 bool signbit(arithmetic x);
312 // signbit
314 #ifdef signbit
321 return signbit(__x);
324 #undef signbit
329 signbit(_A1 __x) _NOEXCEPT
334 #endif // signbit
638 using ::signbit;
    [all...]
  /external/clang/test/CodeGen/
builtins.c 123 P(signbit, (1.0));
  /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;

Completed in 5952 milliseconds

1 23 4 5 6 7 8 9