Lines Matching refs:d
32 udwords d; in __udivmoddi4() local
33 d.all = b; in __udivmoddi4()
39 if (d.s.high == 0) { in __udivmoddi4()
44 *rem = n.s.low % d.s.low; in __udivmoddi4()
45 return n.s.low / d.s.low; in __udivmoddi4()
55 if (d.s.low == 0) { in __udivmoddi4()
56 if (d.s.high == 0) { in __udivmoddi4()
61 *rem = n.s.high % d.s.low; in __udivmoddi4()
62 return n.s.high / d.s.low; in __udivmoddi4()
70 r.s.high = n.s.high % d.s.high; in __udivmoddi4()
74 return n.s.high / d.s.high; in __udivmoddi4()
79 if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */ { in __udivmoddi4()
82 r.s.high = n.s.high & (d.s.high - 1); in __udivmoddi4()
85 return n.s.high >> ctzsi(d.s.high); in __udivmoddi4()
90 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
106 if (d.s.high == 0) { in __udivmoddi4()
110 if ((d.s.low & (d.s.low - 1)) == 0) /* if d is a power of 2 */ { in __udivmoddi4()
112 *rem = n.s.low & (d.s.low - 1); in __udivmoddi4()
113 if (d.s.low == 1) in __udivmoddi4()
115 sr = ctzsi(d.s.low); in __udivmoddi4()
123 sr = 1 + n_uword_bits + clzsi(d.s.low) - clzsi(n.s.high); in __udivmoddi4()
148 sr = clzsi(d.s.high) - clzsi(n.s.high); in __udivmoddi4()
188 const di_int s = (di_int)(d.all - r.all - 1) >> (n_udword_bits - 1); in __udivmoddi4()
190 r.all -= d.all & s; in __udivmoddi4()