Lines Matching +full:low +full:-
1 //===-- muldi3.c - Implement __muldi3 -------------------------------------===//
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
11 //===----------------------------------------------------------------------===//
21 r.s.low = (a & lower_mask) * (b & lower_mask); in __muldsi3()
22 su_int t = r.s.low >> bits_in_word_2; in __muldsi3()
23 r.s.low &= lower_mask; in __muldsi3()
25 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
27 t = r.s.low >> bits_in_word_2; in __muldsi3()
28 r.s.low &= lower_mask; in __muldsi3()
30 r.s.low += (t & lower_mask) << bits_in_word_2; in __muldsi3()
44 r.all = __muldsi3(x.s.low, y.s.low); in __muldi3()
45 r.s.high += x.s.high * y.s.low + x.s.low * y.s.high; in __muldi3()