Searched refs:uu (Results 1 - 24 of 24) sorted by relevance

/arch/microblaze/lib/
H A Dashldi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
22 w.s.low = (unsigned int) uu.s.low << b;
23 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.low = (unsigned int) uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
22 w.s.high = (unsigned int) uu.s.high >> b;
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
19 uu.s.high >> 31;
20 w.s.low = uu.s.high >> -bm;
22 const unsigned int carries = (unsigned int) uu.s.high << bm;
24 w.s.high = uu.s.high >> b;
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dmuldi3.c48 const DWunion uu = {.ll = u}; local
50 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)};
52 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
53 + (unsigned long) uu.s.high * (unsigned long) vv.s.low);
/arch/mips/lib/
H A Dashldi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
22 w.s.low = (unsigned int) uu.s.low << b;
23 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.low = (unsigned int) uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
22 w.s.high = (unsigned int) uu.s.high >> b;
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
19 uu.s.high >> 31;
20 w.s.low = uu.s.high >> -bm;
22 const unsigned int carries = (unsigned int) uu.s.high << bm;
24 w.s.high = uu.s.high >> b;
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
/arch/score/lib/
H A Dashldi3.c25 DWunion uu, w; local
31 uu.ll = u;
36 w.s.high = (unsigned int) uu.s.low << -bm;
38 const unsigned int carries = (unsigned int) uu.s.low >> bm;
40 w.s.low = (unsigned int) uu.s.low << b;
41 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c26 DWunion uu, w; local
32 uu.ll = u;
37 w.s.low = (unsigned int) uu.s.high >> -bm;
39 const unsigned int carries = (unsigned int) uu.s.high << bm;
41 w.s.high = (unsigned int) uu.s.high >> b;
42 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashrdi3.c25 DWunion uu, w; local
31 uu.ll = u;
37 uu.s.high >> 31;
38 w.s.low = uu.s.high >> -bm;
40 const unsigned int carries = (unsigned int) uu.s.high << bm;
42 w.s.high = uu.s.high >> b;
43 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
/arch/sh/lib/
H A Dashldi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.high = (unsigned int) uu.s.low << -bm;
20 const unsigned int carries = (unsigned int) uu.s.low >> bm;
22 w.s.low = (unsigned int) uu.s.low << b;
23 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
18 w.s.low = (unsigned int) uu.s.high >> -bm;
20 const unsigned int carries = (unsigned int) uu.s.high << bm;
22 w.s.high = (unsigned int) uu.s.high >> b;
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashrdi3.c7 DWunion uu, w; local
13 uu.ll = u;
19 uu.s.high >> 31;
20 w.s.low = uu.s.high >> -bm;
22 const unsigned int carries = (unsigned int) uu.s.high << bm;
24 w.s.high = uu.s.high >> b;
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
/arch/mn10300/lib/
H A Dnegdi2.c49 union DWunion uu; local
51 uu.ll = u;
53 w.s.low = -uu.s.low;
54 w.s.high = -uu.s.high - ((u32) w.s.low > 0);
H A Dashrdi3.c41 union DIunion uu; local
47 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
55 USItype carries = (USItype)uu.s.high << bm;
56 w.s.high = uu.s.high >> b;
57 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dlshrdi3.c42 union DIunion uu; local
47 uu.ll = u;
52 w.s.low = (USItype) uu.s.high >> -bm;
54 USItype carries = (USItype) uu.s.high << bm;
55 w.s.high = (USItype) uu.s.high >> b;
56 w.s.low = ((USItype) uu.s.low >> b) | carries;
/arch/blackfin/lib/
H A Dashrdi3.c17 DIunion uu; local
22 uu.ll = u;
27 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1);
28 w.s.low = uu.s.high >> -bm;
30 USItype carries = (USItype) uu.s.high << bm;
31 w.s.high = uu.s.high >> b;
32 w.s.low = ((USItype) uu.s.low >> b) | carries;
H A Dashldi3.c17 DIunion uu; local
22 uu.ll = u;
27 w.s.high = (USItype) uu.s.low << -bm;
29 USItype carries = (USItype) uu.s.low >> bm;
30 w.s.low = (USItype) uu.s.low << b;
31 w.s.high = ((USItype) uu.s.high << b) | carries;
H A Dlshrdi3.c17 DIunion uu; local
22 uu.ll = u;
27 w.s.low = (USItype) uu.s.high >> -bm;
29 USItype carries = (USItype) uu.s.high << bm;
30 w.s.high = (USItype) uu.s.high >> b;
31 w.s.low = ((USItype) uu.s.low >> b) | carries;
/arch/m68k/lib/
H A Dashrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1);
53 w.s.low = uu.s.high >> -bm;
57 USItype carries = (USItype)uu.s.high << bm;
58 w.s.high = uu.s.high >> b;
59 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dashldi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.high = (USItype)uu.s.low << -bm;
56 USItype carries = (USItype)uu.s.low >> bm;
57 w.s.low = (USItype)uu.s.low << b;
58 w.s.high = ((USItype)uu.s.high << b) | carries;
H A Dlshrdi3.c41 DIunion uu; local
46 uu.ll = u;
52 w.s.low = (USItype)uu.s.high >> -bm;
56 USItype carries = (USItype)uu.s.high << bm;
57 w.s.high = (USItype)uu.s.high >> b;
58 w.s.low = ((USItype)uu.s.low >> b) | carries;
H A Dmuldi3.c87 DIunion uu, vv; local
89 uu.ll = u,
92 w.ll = __umulsidi3 (uu.s.low, vv.s.low);
93 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
94 + (USItype) uu.s.high * (USItype) vv.s.low);
/arch/s390/math-emu/
H A Dmath.c2247 union lll w,uu; local
2249 uu.ll = u;
2251 w.s[1] = -uu.s[1];
2252 w.s[0] = -uu.s[0] - ((int) w.s[1] != 0);

Completed in 386 milliseconds