Home
last modified time | relevance | path

Searched refs:varamount (Results 1 – 2 of 2) sorted by relevance

/linux-2.6.39/arch/parisc/math-emu/
Ddbl_float.h64 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument
65 {if((varamount) >= 32) { \
66 Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \
69 else if(varamount > 0) { \
71 (varamount), Dallp2(srcdstB)); \
72 Dallp1(srcdstA) >>= varamount; \
75 #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ argument
76 {if((varamount) >= 32) { \
77 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \
80 else if(varamount > 0) { \
[all …]
Dsgl_float.h54 #define Sgl_rightshift(srcdst, varamount) \ argument
55 Sall(srcdst) >>= varamount
56 #define Sgl_leftshift(srcdst, varamount) \ argument
57 Sall(srcdst) <<= varamount
58 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument
60 (Sexponentmantissa(srcdst) >> varamount) | \