Lines Matching refs:divisor
104 utwords divisor; in __udivmodti4() local
105 divisor.all = b; in __udivmodti4()
108 if (divisor.all > dividend.all) { in __udivmodti4()
114 if (divisor.s.high == 0) { in __udivmodti4()
116 if (dividend.s.high < divisor.s.low) { in __udivmodti4()
119 divisor.s.low, &remainder.s.low); in __udivmodti4()
124 quotient.s.high = dividend.s.high / divisor.s.low; in __udivmodti4()
125 dividend.s.high = dividend.s.high % divisor.s.low; in __udivmodti4()
127 divisor.s.low, &remainder.s.low); in __udivmodti4()
135 __builtin_clzll(divisor.s.high) - __builtin_clzll(dividend.s.high); in __udivmodti4()
136 divisor.all <<= shift; in __udivmodti4()
148 (ti_int)(divisor.all - dividend.all - 1) >> (n_utword_bits - 1); in __udivmodti4()
150 dividend.all -= divisor.all & s; in __udivmodti4()
151 divisor.all >>= 1; in __udivmodti4()