Home
last modified time | relevance | path

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

/external/compiler-rt/lib/builtins/
Dmuldi3.c24 const int bits_in_word_2 = (int)(sizeof(si_int) * CHAR_BIT) / 2; in __muldsi3() local
25 const su_int lower_mask = (su_int)~0 >> bits_in_word_2; in __muldsi3()
27 su_int t = r.s.low >> bits_in_word_2; in __muldsi3()
29 t += (a >> bits_in_word_2) * (b & lower_mask); in __muldsi3()
30 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
31 r.s.high = t >> bits_in_word_2; in __muldsi3()
32 t = r.s.low >> bits_in_word_2; in __muldsi3()
34 t += (b >> bits_in_word_2) * (a & lower_mask); in __muldsi3()
35 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
36 r.s.high += t >> bits_in_word_2; in __muldsi3()
[all …]