Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dmulti3.c21 const int bits_in_dword_2 = (int)(sizeof(di_int) * CHAR_BIT) / 2; in __mulddi3() local
22 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2; in __mulddi3()
24 du_int t = r.s.low >> bits_in_dword_2; in __mulddi3()
26 t += (a >> bits_in_dword_2) * (b & lower_mask); in __mulddi3()
27 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
28 r.s.high = t >> bits_in_dword_2; in __mulddi3()
29 t = r.s.low >> bits_in_dword_2; in __mulddi3()
31 t += (b >> bits_in_dword_2) * (a & lower_mask); in __mulddi3()
32 r.s.low += (t & lower_mask) << bits_in_dword_2; in __mulddi3()
33 r.s.high += t >> bits_in_dword_2; in __mulddi3()
[all …]