HomeSort by: relevance | last modified time | path
    Searched defs:bits_in_dword_2 (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/builtins/
multi3.c 26 const int bits_in_dword_2 = (int)(sizeof(di_int) * CHAR_BIT) / 2; local in function:__mulddi3
27 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2;
29 du_int t = r.s.low >> bits_in_dword_2;
31 t += (a >> bits_in_dword_2) * (b & lower_mask);
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
33 r.s.high = t >> bits_in_dword_2;
34 t = r.s.low >> bits_in_dword_2;
36 t += (b >> bits_in_dword_2) * (a & lower_mask);
37 r.s.low += (t & lower_mask) << bits_in_dword_2;
38 r.s.high += t >> bits_in_dword_2;
    [all...]
multi3.c 26 const int bits_in_dword_2 = (int)(sizeof(di_int) * CHAR_BIT) / 2; local in function:__mulddi3
27 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2;
29 du_int t = r.s.low >> bits_in_dword_2;
31 t += (a >> bits_in_dword_2) * (b & lower_mask);
32 r.s.low += (t & lower_mask) << bits_in_dword_2;
33 r.s.high = t >> bits_in_dword_2;
34 t = r.s.low >> bits_in_dword_2;
36 t += (b >> bits_in_dword_2) * (a & lower_mask);
37 r.s.low += (t & lower_mask) << bits_in_dword_2;
38 r.s.high += t >> bits_in_dword_2;
    [all...]

Completed in 21 milliseconds