Searched refs:bits_in_word_2 (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dmuldi3.c19 const int bits_in_word_2 = (int)(sizeof(si_int) * CHAR_BIT) / 2; local
20 const su_int lower_mask = (su_int)~0 >> bits_in_word_2;
22 su_int t = r.s.low >> bits_in_word_2;
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;
[all...]

Completed in 151 milliseconds