| /src/tests/lib/libm/ |
| t_bit.c | 7 * Testing signbit{,f,l} function correctly 52 ATF_TC(signbit); variable 53 ATF_TC_HEAD(signbit, tc) 56 "Check that signbit functions correctly"); 59 ATF_TC_BODY(signbit, tc) 68 if (signbit(iterator_f) != values[i].is_negative) { 73 if (signbit(iterator_d) != values[i].is_negative) { 74 atf_tc_fail("%s:%d iteration %d signbit is wrong" 78 if (signbit(iterator_l) != values[i].is_negative) { 86 if (signbit(ldbl_values[i].input) ! [all...] |
| /src/external/apache2/llvm/dist/libcxx/include/ |
| math.h | 136 bool signbit(arithmetic x); 312 // signbit 314 #ifdef signbit 324 return signbit(__lcpp_x); 328 #undef signbit macro 333 signbit(_A1 __lcpp_x) _NOEXCEPT 342 signbit(_A1 __lcpp_x) _NOEXCEPT 349 signbit(_A1) _NOEXCEPT 357 signbit(_A1 __lcpp_x) _NOEXCEPT 359 return ::signbit(static_cast<typename std::__promote<_A1>::type>(__lcpp_x)) [all...] |
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/iso/ |
| math_c99.h | 54 #undef signbit macro 55 #define signbit(x) (sizeof(x) == sizeof(float) \ macro 82 #undef signbit macro 83 #define signbit(x) (sizeof(x) == sizeof(float) \ macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/iso/ |
| math_c99.h | 54 #undef signbit macro 55 #define signbit(x) (sizeof(x) == sizeof(float) \ macro 82 #undef signbit macro 83 #define signbit(x) (sizeof(x) == sizeof(float) \ macro
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| alpha-dis.c | 175 int signbit = 1 << (operand->bits - 1); local 176 value = (value ^ signbit) - signbit;
|
| arc-dis.c | 705 int signbit = 1 << (operand->bits - 1); local 706 value = (value ^ signbit) - signbit;
|
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| alpha-dis.c | 175 int signbit = 1 << (operand->bits - 1); local 176 value = (value ^ signbit) - signbit;
|
| /src/external/gpl3/gcc/dist/libgcc/config/pa/ |
| hpux-unwind.h | 82 int signbit = (1 << (len - 1)); local 83 int mask = (signbit << 1) - 1; 84 return ((x & mask) ^ signbit) - signbit;
|
| /src/external/gpl3/gcc.old/dist/libgcc/config/pa/ |
| hpux-unwind.h | 82 int signbit = (1 << (len - 1)); local 83 int mask = (signbit << 1) - 1; 84 return ((x & mask) ^ signbit) - signbit;
|
| /src/external/gpl3/gdb/dist/opcodes/ |
| alpha-dis.c | 175 int signbit = 1 << (operand->bits - 1); local 176 value = (value ^ signbit) - signbit;
|
| /src/external/gpl3/gdb.old/dist/opcodes/ |
| alpha-dis.c | 175 int signbit = 1 << (operand->bits - 1); local 176 value = (value ^ signbit) - signbit;
|
| /src/external/gpl3/gcc/dist/fixincludes/tests/base/ |
| math.h | 133 #define signbit(x) __builtin_signbit(x) macro
|
| /src/external/gpl3/gcc.old/dist/fixincludes/tests/base/ |
| math.h | 133 #define signbit(x) __builtin_signbit(x) macro
|
| /src/lib/libm/complex/ |
| catrig.c | 55 #undef signbit macro 56 #define signbit(x) (__builtin_signbit(x)) macro 329 if (signbit(x) == 0) 388 sx = signbit(x); 389 sy = signbit(y);
|
| catrigf.c | 68 #undef signbit macro 69 #define signbit(x) (__builtin_signbitf(x)) macro 181 if (signbit(x) == 0) 223 sx = signbit(x); 224 sy = signbit(y);
|
| catrigl.c | 62 #undef signbit macro 63 #define signbit(x) (__builtin_signbitl(x)) macro 213 if (signbit(x) == 0) 253 sx = signbit(x); 254 sy = signbit(y);
|
| /src/sys/arch/aarch64/aarch64/ |
| db_interface.c | 276 const uint64_t signbit = ((uint64_t)1 << (bitwidth - 1)); local 277 const uint64_t immmax = signbit << 1; 279 if (imm & signbit)
|
| db_trace.c | 190 const uint64_t signbit = ((uint64_t)1 << (bitwidth - 1)); local 191 const uint64_t immmax = signbit << 1; 193 if (imm & signbit)
|
| /src/external/apache2/llvm/dist/clang/lib/Headers/ |
| __clang_cuda_cmath.h | 170 __DEVICE__ bool signbit(float __x) { return ::__signbitf(__x); } function 171 __DEVICE__ bool signbit(double __x) { return ::__signbitd(__x); } function 293 __CUDA_CLANG_FN_INTEGER_OVERLOAD_1(bool, signbit) 424 using ::signbit;
|
| __clang_cuda_runtime_wrapper.h | 144 return std::signbit(x); 299 // math_functions.hpp defines ::signbit as a __host__ __device__ function. This 300 // conflicts with libstdc++'s constexpr ::signbit, so we have to rename 301 // math_function.hpp's ::signbit. It's guarded by #undef signbit, but that's 303 #pragma push_macro("signbit") 306 #define signbit __ignored_cuda_signbit macro 329 #pragma pop_macro("signbit")
|
| __clang_hip_cmath.h | 112 __DEVICE__ bool signbit(float __x) { return ::__signbitf(__x); } function 113 __DEVICE__ bool signbit(double __x) { return ::__signbit(__x); } function 479 __HIP_OVERLOAD1(bool, signbit) 652 using ::signbit;
|
| /src/include/ |
| math.h | 316 /* 7.12.3.6 int signbit(real-floating x) */ 317 #define signbit(__x) __fpmacro_unary_floating(signbit, __x) macro
|
| /src/external/bsd/tcpdump/dist/ |
| print-ntp.c | 482 int signbit; local 494 signbit = 0; 500 signbit = 1; 508 signbit = 0; 511 signbit = 1; 521 ND_PRINT("%s%u.%09u", signbit ? "-" : "+", i, f);
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimple-range-op.cc | 332 bool signbit; variable 333 if (lh.signbit_p (signbit)) 335 if (signbit) 377 bool signbit; 378 if (rh.signbit_p (signbit)) 382 if (signbit)
|
| /src/external/gpl3/binutils/dist/bfd/ |
| libhppa.h | 165 unsigned signbit = (1u << (len - 1)); local 166 unsigned mask = (signbit << 1) - 1; 167 return ((x & mask) ^ signbit) - signbit;
|