reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
26 n.all = a; 33 if (n.s.high == 0) { 39 *rem = n.s.low % d.s.low; 40 return n.s.low / d.s.low; 46 *rem = n.s.low; 56 *rem = n.s.high % d.s.low; 57 return n.s.high / d.s.low; 60 if (n.s.low == 0) { 65 r.s.high = n.s.high % d.s.high; 69 return n.s.high / d.s.high; 76 r.s.low = n.s.low; 77 r.s.high = n.s.high & (d.s.high - 1); 80 return n.s.high >> __builtin_ctzll(d.s.high); 85 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); 89 *rem = n.all; 96 q.s.high = n.s.low << (n_udword_bits - sr); 98 r.s.high = n.s.high >> sr; 99 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 99 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 107 *rem = n.s.low & (d.s.low - 1); 109 return n.all; 111 q.s.high = n.s.high >> sr; 112 q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 112 q.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 119 __builtin_clzll(n.s.high); 125 q.s.high = n.s.low; 127 r.s.low = n.s.high; 130 q.s.high = n.s.low << (n_udword_bits - sr); 131 r.s.high = n.s.high >> sr; 132 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 132 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 134 q.s.low = n.s.low << (n_utword_bits - sr); 135 q.s.high = (n.s.high << (n_utword_bits - sr)) | 136 (n.s.low >> (sr - n_udword_bits)); 138 r.s.low = n.s.high >> (sr - n_udword_bits); 144 sr = __builtin_clzll(d.s.high) - __builtin_clzll(n.s.high); 148 *rem = n.all; 157 q.s.high = n.s.low; 159 r.s.low = n.s.high; 161 r.s.high = n.s.high >> sr; 162 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 162 r.s.low = (n.s.high << (n_udword_bits - sr)) | (n.s.low >> sr); 163 q.s.high = n.s.low << (n_udword_bits - sr);