reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
100 q.s.low = 0; 101 q.s.high = n.s.low << (n_uword_bits - sr); 116 q.s.high = n.s.high >> sr; 117 q.s.low = (n.s.high << (n_uword_bits - sr)) | (n.s.low >> sr); 118 return q.all; 128 q.s.low = 0; 129 q.s.high = n.s.low; 133 q.s.low = 0; 134 q.s.high = n.s.low << (n_uword_bits - sr); 138 q.s.low = n.s.low << (n_udword_bits - sr); 139 q.s.high = (n.s.high << (n_udword_bits - sr)) | 158 q.s.low = 0; 160 q.s.high = n.s.low; 164 q.s.high = n.s.low << (n_uword_bits - sr); 179 r.s.low = (r.s.low << 1) | (q.s.high >> (n_uword_bits - 1)); 180 q.s.high = (q.s.high << 1) | (q.s.low >> (n_uword_bits - 1)); 180 q.s.high = (q.s.high << 1) | (q.s.low >> (n_uword_bits - 1)); 180 q.s.high = (q.s.high << 1) | (q.s.low >> (n_uword_bits - 1)); 181 q.s.low = (q.s.low << 1) | carry; 181 q.s.low = (q.s.low << 1) | carry; 192 q.all = (q.all << 1) | carry; 192 q.all = (q.all << 1) | carry; 195 return q.all;