Home
last modified time | relevance | path

Searched refs:mant_sig (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/target/alpha/
H A Dvax_helper.c65 uint32_t exp, mant_sig; in f_to_float32() local
69 mant_sig = ((a >> 32) & 0x80000000) | ((a >> 29) & 0x007fffff); in f_to_float32()
71 if (unlikely(!exp && mant_sig)) { in f_to_float32()
80 r.l = ((exp - 2) << 23) | mant_sig; in f_to_float32()
196 uint64_t exp, mant_sig; in g_to_float64() local
200 mant_sig = a & 0x800fffffffffffffull; in g_to_float64()
202 if (!exp && mant_sig) { in g_to_float64()
211 r.ll = ((exp - 2) << 52) | mant_sig; in g_to_float64()