Searched refs:ieeeSign (Results 1 – 4 of 4) sorted by relevance
/l4re-core-master/libstdc++-v3/contrib/libstdc++-v3-11/src/c++17/ryu/ |
A D | d2s.c | 79 …ing_decimal_64 d2d(const uint64_t ieeeMantissa, const uint32_t ieeeExponent, const bool ieeeSign) { in d2d() argument 299 fd.sign = ieeeSign; in d2d() 410 …e bool d2d_small_int(const uint64_t ieeeMantissa, const uint32_t ieeeExponent, const bool ieeeSign, in d2d_small_int() argument 439 v->sign = ieeeSign; in d2d_small_int() 456 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in floating_to_fd64() local 465 const bool isSmallInt = d2d_small_int(ieeeMantissa, ieeeExponent, ieeeSign, &v); in floating_to_fd64() 481 v = d2d(ieeeMantissa, ieeeExponent, ieeeSign); in floating_to_fd64()
|
A D | generic_128.c | 41 const uint128_t ieeeMantissa, const uint32_t ieeeExponent, const bool ieeeSign, in generic_binary_to_decimal() argument 57 fd.sign = ieeeSign; in generic_binary_to_decimal() 64 fd.sign = ieeeSign; in generic_binary_to_decimal() 92 printf("-> %s %s * 2^%d\n", ieeeSign ? "-" : "+", s(m2), e2 + 2); in generic_binary_to_decimal() 235 fd.sign = ieeeSign; in generic_binary_to_decimal()
|
A D | f2s.c | 40 …ing_decimal_32 f2d(const uint32_t ieeeMantissa, const uint32_t ieeeExponent, const bool ieeeSign) { in f2d() argument 217 fd.sign = ieeeSign; in f2d() 310 const bool ieeeSign = ((bits >> (FLOAT_MANTISSA_BITS + FLOAT_EXPONENT_BITS)) & 1) != 0; in floating_to_fd32() local 319 const floating_decimal_32 v = f2d(ieeeMantissa, ieeeExponent, ieeeSign); in floating_to_fd32()
|
A D | d2fixed.c | 330 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2fixed_buffered_n() local 358 if (ieeeSign) { in d2fixed_buffered_n() 516 const bool ieeeSign = ((bits >> (DOUBLE_MANTISSA_BITS + DOUBLE_EXPONENT_BITS)) & 1) != 0; in d2exp_buffered_n() local 545 if (ieeeSign) { in d2exp_buffered_n()
|
Completed in 7 milliseconds