Lines Matching full:output
21 union overlay64 output; in __ashldi3() local
23 output.longw = num; in __ashldi3()
25 output.words.higher = output.words.lower << (shift - 32); in __ashldi3()
26 output.words.lower = 0; in __ashldi3()
30 output.words.higher = (output.words.higher << shift) | in __ashldi3()
31 (output.words.lower >> (32 - shift)); in __ashldi3()
32 output.words.lower = output.words.lower << shift; in __ashldi3()
34 return output.longw; in __ashldi3()
39 union overlay64 output; in __lshrdi3() local
41 output.longw = num; in __lshrdi3()
43 output.words.lower = output.words.higher >> (shift - 32); in __lshrdi3()
44 output.words.higher = 0; in __lshrdi3()
48 output.words.lower = output.words.lower >> shift | in __lshrdi3()
49 (output.words.higher << (32 - shift)); in __lshrdi3()
50 output.words.higher = output.words.higher >> shift; in __lshrdi3()
52 return output.longw; in __lshrdi3()