Lines Matching refs:high

38     if (n.s.high == 0)
40 if (d.s.high == 0)
58 /* n.s.high != 0 */
61 if (d.s.high == 0)
68 *rem = n.s.high % d.s.low;
69 return n.s.high / d.s.low;
71 /* d.s.high != 0 */
80 r.s.high = n.s.high % d.s.high;
84 return n.s.high / d.s.high;
90 if ((d.s.high & (d.s.high - 1)) == 0) /* if d is a power of 2 */
95 r.s.high = n.s.high & (d.s.high - 1);
98 return n.s.high >> __builtin_ctzll(d.s.high);
104 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
116 q.s.high = n.s.low << (n_udword_bits - sr);
118 r.s.high = n.s.high >> sr;
119 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
123 if (d.s.high == 0)
136 q.s.high = n.s.high >> sr;
137 q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
145 - __builtin_clzll(n.s.high);
153 q.s.high = n.s.low;
154 r.s.high = 0;
155 r.s.low = n.s.high;
160 q.s.high = n.s.low << (n_udword_bits - sr);
161 r.s.high = n.s.high >> sr;
162 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
167 q.s.high = (n.s.high << (n_utword_bits - sr)) |
169 r.s.high = 0;
170 r.s.low = n.s.high >> (sr - n_udword_bits);
179 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high);
195 q.s.high = n.s.low;
196 r.s.high = 0;
197 r.s.low = n.s.high;
201 r.s.high = n.s.high >> sr;
202 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr);
203 q.s.high = n.s.low << (n_udword_bits - sr);
217 r.s.high = (r.s.high << 1) | (r.s.low >> (n_udword_bits - 1));
218 r.s.low = (r.s.low << 1) | (q.s.high >> (n_udword_bits - 1));
219 q.s.high = (q.s.high << 1) | (q.s.low >> (n_udword_bits - 1));