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

/barrelfish-master/lib/compiler-rt/builtins/
H A Dmulti3.c22 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2; local
23 r.s.low = (a & lower_mask) * (b & lower_mask);
25 r.s.low &= lower_mask;
26 t += (a >> bits_in_dword_2) * (b & lower_mask);
27 r.s.low += (t & lower_mask) << bits_in_dword_2;
30 r.s.low &= lower_mask;
31 t += (b >> bits_in_dword_2) * (a & lower_mask);
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
H A Dmuldi3.c20 const su_int lower_mask = (su_int)~0 >> bits_in_word_2; local
21 r.s.low = (a & lower_mask) * (b & lower_mask);
23 r.s.low &= lower_mask;
24 t += (a >> bits_in_word_2) * (b & lower_mask);
25 r.s.low += (t & lower_mask) << bits_in_word_2;
28 r.s.low &= lower_mask;
29 t += (b >> bits_in_word_2) * (a & lower_mask);
30 r.s.low += (t & lower_mask) << bits_in_word_2;

Completed in 76 milliseconds