reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
21 r.s.low = (a & lower_mask) * (b & lower_mask); 22 su_int t = r.s.low >> bits_in_word_2; 23 r.s.low &= lower_mask; 25 r.s.low += (t & lower_mask) << bits_in_word_2; 26 r.s.high = t >> bits_in_word_2; 27 t = r.s.low >> bits_in_word_2; 28 r.s.low &= lower_mask; 30 r.s.low += (t & lower_mask) << bits_in_word_2; 31 r.s.high += t >> bits_in_word_2; 32 r.s.high += (a >> bits_in_word_2) * (b >> bits_in_word_2); 33 return r.all;