reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
22 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2; 24 du_int t = r.s.low >> bits_in_dword_2; 26 t += (a >> bits_in_dword_2) * (b & lower_mask); 27 r.s.low += (t & lower_mask) << bits_in_dword_2; 28 r.s.high = t >> bits_in_dword_2; 29 t = r.s.low >> bits_in_dword_2; 31 t += (b >> bits_in_dword_2) * (a & lower_mask); 32 r.s.low += (t & lower_mask) << bits_in_dword_2; 33 r.s.high += t >> bits_in_dword_2; 34 r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2); 34 r.s.high += (a >> bits_in_dword_2) * (b >> bits_in_dword_2);