Lines Matching refs:dwba
263 double_with_bit_access dwba; in get_bit_access() local
264 dwba.F = x; in get_bit_access()
265 return dwba; in get_bit_access()
783 double_with_bit_access dwba = get_bit_access(positive_number); in log10_of_positive() local
785 int exp2 = get_exp2(dwba); in log10_of_positive()
787 dwba.U = (dwba.U & (((double_uint_t) (1) << DOUBLE_STORED_MANTISSA_BITS) - 1U)) | in log10_of_positive()
789 double z = (dwba.F - 1.5); in log10_of_positive()
813 double_with_bit_access dwba; in pow10_of_int() local
817 dwba.U = ((double_uint_t)(exp2) + DOUBLE_BASE_EXPONENT) << DOUBLE_STORED_MANTISSA_BITS; in pow10_of_int()
820 dwba.F *= 1 + 2 * z / (2 - z + (z2 / (6 + (z2 / (10 + z2 / 14))))); in pow10_of_int()
821 return dwba.F; in pow10_of_int()