Home
last modified time | relevance | path

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

/openbmc/qemu/target/tricore/
H A Dop_helper.c1951 int32_t int_mant = r1_low; in helper_pack() local
1952 uint32_t flag_rnd = (int_mant & (1 << 7)) && ( in helper_pack()
1953 (int_mant & (1 << 8)) || in helper_pack()
1954 (int_mant & 0x7f) || in helper_pack()
1956 if (((int_mant & (1<<31)) == 0) && (int_exp == 255)) { in helper_pack()
1958 fp_frac = extract32(int_mant, 8, 23); in helper_pack()
1959 } else if ((int_mant & (1<<31)) && (int_exp >= 127)) { in helper_pack()
1962 } else if ((int_mant & (1<<31)) && (int_exp <= -128)) { in helper_pack()
1965 } else if (int_mant == 0) { in helper_pack()
1969 if (((int_mant & (1 << 31)) == 0)) { in helper_pack()
[all …]