reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/builtins/muldi3.c
   24   t += (a >> bits_in_word_2) * (b & 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;
   29   t += (b >> bits_in_word_2) * (a & lower_mask);
   30   r.s.low += (t & lower_mask) << bits_in_word_2;
   31   r.s.high += t >> bits_in_word_2;