Lines Matching refs:varamount
64 #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) { \
82 (varamount), Dallp2(srcdstB)); \
84 (Dexponentmantissap1(srcdstA)>>varamount)); \
87 #define Dbl_leftshift(srcdstA, srcdstB, varamount) \ argument
88 {if((varamount) >= 32) { \
89 Dallp1(srcdstA) = Dallp2(srcdstB) << (varamount-32); \
93 if ((varamount) > 0) { \
94 Dallp1(srcdstA) = (Dallp1(srcdstA) << (varamount)) | \
95 (Dallp2(srcdstB) >> (32-(varamount))); \
96 Dallp2(srcdstB) <<= varamount; \