Lines Matching refs:d
30 udwords d; in __udivmoddi4() local
31 d.all = b; in __udivmoddi4()
38 if (d.s.high == 0) in __udivmoddi4()
45 *rem = n.s.low % d.s.low; in __udivmoddi4()
46 return n.s.low / d.s.low; in __udivmoddi4()
57 if (d.s.low == 0) in __udivmoddi4()
59 if (d.s.high == 0) in __udivmoddi4()
66 *rem = n.s.high % d.s.low; in __udivmoddi4()
67 return n.s.high / d.s.low; in __udivmoddi4()
78 r.s.high = n.s.high % d.s.high; in __udivmoddi4()
82 return n.s.high / d.s.high; in __udivmoddi4()
88 if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */ in __udivmoddi4()
93 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
96 return n.s.high >> __builtin_ctz(d.s.high); in __udivmoddi4()
102 sr = __builtin_clz(d.s.high) - __builtin_clz(n.s.high); in __udivmoddi4()
121 if (d.s.high == 0) in __udivmoddi4()
127 if ((d.s.low & (d.s.low - 1)) == 0) /* if d is a power of 2 */ in __udivmoddi4()
130 *rem = n.s.low & (d.s.low - 1); in __udivmoddi4()
131 if (d.s.low == 1) in __udivmoddi4()
133 sr = __builtin_ctz(d.s.low); in __udivmoddi4()
142 sr = 1 + n_uword_bits + __builtin_clz(d.s.low) - __builtin_clz(n.s.high); in __udivmoddi4()
176 sr = __builtin_clz(d.s.high) - __builtin_clz(n.s.high); in __udivmoddi4()
223 const di_int s = (di_int)(d.all - r.all - 1) >> (n_udword_bits - 1); in __udivmoddi4()
225 r.all -= d.all & s; in __udivmoddi4()