Home
last modified time | relevance | path

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

/openbmc/qemu/target/tricore/
H A Dop_helper.c2123 int32_t addend, dividend_quotient, remainder; in helper_dvstep() local
2131 dividend_quotient = (int32_t)r1; in helper_dvstep()
2135 remainder = (remainder << 1) | extract32(dividend_quotient, 31, 1); in helper_dvstep()
2136 dividend_quotient <<= 1; in helper_dvstep()
2142 dividend_quotient = dividend_quotient | !quotient_sign; in helper_dvstep()
2144 dividend_quotient = dividend_quotient | quotient_sign; in helper_dvstep()
2147 return ((uint64_t)remainder << 32) | (uint32_t)dividend_quotient; in helper_dvstep()
2152 int32_t dividend_quotient = extract64(r1, 0, 32); in helper_dvstep_u() local
2158 dividend_quotient <<= 1; in helper_dvstep_u()
2163 dividend_quotient = dividend_quotient | !(temp < 0); in helper_dvstep_u()
[all …]