Home
last modified time | relevance | path

Searched refs:uu (Results 1 – 25 of 27) sorted by relevance

12

/arch/microblaze/lib/
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
13 uu.ll = u; in __ashrdi3()
19 uu.s.high >> 31; in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
24 w.s.high = uu.s.high >> b; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
13 uu.ll = u; in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
13 uu.ll = u; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/arch/sh/lib/
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
13 uu.ll = u; in __ashrdi3()
19 uu.s.high >> 31; in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
24 w.s.high = uu.s.high >> b; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
13 uu.ll = u; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
13 uu.ll = u; in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
/arch/mips/lib/
Dashrdi3.c7 DWunion uu, w; in __ashrdi3() local
13 uu.ll = u; in __ashrdi3()
19 uu.s.high >> 31; in __ashrdi3()
20 w.s.low = uu.s.high >> -bm; in __ashrdi3()
22 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
24 w.s.high = uu.s.high >> b; in __ashrdi3()
25 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c7 DWunion uu, w; in __lshrdi3() local
13 uu.ll = u; in __lshrdi3()
18 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
22 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c7 DWunion uu, w; in __ashldi3() local
13 uu.ll = u; in __ashldi3()
18 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
20 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
22 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
23 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/arch/score/lib/
Dashrdi3.c25 DWunion uu, w; in __ashrdi3() local
31 uu.ll = u; in __ashrdi3()
37 uu.s.high >> 31; in __ashrdi3()
38 w.s.low = uu.s.high >> -bm; in __ashrdi3()
40 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
42 w.s.high = uu.s.high >> b; in __ashrdi3()
43 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c26 DWunion uu, w; in __lshrdi3() local
32 uu.ll = u; in __lshrdi3()
37 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
39 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
41 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
42 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c25 DWunion uu, w; in __ashldi3() local
31 uu.ll = u; in __ashldi3()
36 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
38 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
40 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
41 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/arch/blackfin/lib/
Dashrdi3.c17 DIunion uu; in __ashrdi3() local
22 uu.ll = u; in __ashrdi3()
27 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
28 w.s.low = uu.s.high >> -bm; in __ashrdi3()
30 USItype carries = (USItype) uu.s.high << bm; in __ashrdi3()
31 w.s.high = uu.s.high >> b; in __ashrdi3()
32 w.s.low = ((USItype) uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c17 DIunion uu; in __lshrdi3() local
22 uu.ll = u; in __lshrdi3()
27 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
29 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
30 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
31 w.s.low = ((USItype) uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c17 DIunion uu; in __ashldi3() local
22 uu.ll = u; in __ashldi3()
27 w.s.high = (USItype) uu.s.low << -bm; in __ashldi3()
29 USItype carries = (USItype) uu.s.low >> bm; in __ashldi3()
30 w.s.low = (USItype) uu.s.low << b; in __ashldi3()
31 w.s.high = ((USItype) uu.s.high << b) | carries; in __ashldi3()
/arch/h8300/lib/
Dashrdi3.c5 const DWunion uu = {.ll = u}; in __ashrdi3() local
14 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
15 w.s.low = uu.s.high >> -bm; in __ashrdi3()
17 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
19 w.s.high = uu.s.high >> b; in __ashrdi3()
20 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3()
Dashldi3.c6 const DWunion uu = {.ll = u}; in __ashldi3() local
15 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
17 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
19 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
20 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
Dlshrdi3.c5 const DWunion uu = {.ll = u}; in __lshrdi3() local
14 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
16 const UWtype carries = (UWtype) uu.s.high << bm; in __lshrdi3()
18 w.s.high = (UWtype) uu.s.high >> b; in __lshrdi3()
19 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3()
/arch/mn10300/lib/
Dashrdi3.c41 union DIunion uu; in __ashrdi3() local
47 uu.ll = u; in __ashrdi3()
52 w.s.high = uu.s.high >> (sizeof(SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
53 w.s.low = uu.s.high >> -bm; in __ashrdi3()
55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
56 w.s.high = uu.s.high >> b; in __ashrdi3()
57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c42 union DIunion uu; in __lshrdi3() local
47 uu.ll = u; in __lshrdi3()
52 w.s.low = (USItype) uu.s.high >> -bm; in __lshrdi3()
54 USItype carries = (USItype) uu.s.high << bm; in __lshrdi3()
55 w.s.high = (USItype) uu.s.high >> b; in __lshrdi3()
56 w.s.low = ((USItype) uu.s.low >> b) | carries; in __lshrdi3()
Dnegdi2.c49 union DWunion uu; in __negdi2() local
51 uu.ll = u; in __negdi2()
53 w.s.low = -uu.s.low; in __negdi2()
54 w.s.high = -uu.s.high - ((u32) w.s.low > 0); in __negdi2()
/arch/m68k/lib/
Dashrdi3.c36 DIunion uu; in __ashrdi3() local
41 uu.ll = u; in __ashrdi3()
47 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3()
48 w.s.low = uu.s.high >> -bm; in __ashrdi3()
52 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3()
53 w.s.high = uu.s.high >> b; in __ashrdi3()
54 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
Dlshrdi3.c36 DIunion uu; in __lshrdi3() local
41 uu.ll = u; in __lshrdi3()
47 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
51 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
52 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
53 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
Dashldi3.c36 DIunion uu; in __ashldi3() local
41 uu.ll = u; in __ashldi3()
47 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
51 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
52 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
53 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
Dmuldi3.c82 DIunion uu, vv; in __muldi3() local
84 uu.ll = u, in __muldi3()
87 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
88 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
89 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()

12