Lines Matching refs:varamount
51 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument
52 {if((varamount) >= 32) { \
53 Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \
56 else if(varamount > 0) { \
58 (varamount), Dallp2(srcdstB)); \
59 Dallp1(srcdstA) >>= varamount; \
62 #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ argument
63 {if((varamount) >= 32) { \
64 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \
67 else if(varamount > 0) { \
69 (varamount), Dallp2(srcdstB)); \
71 (Dexponentmantissap1(srcdstA)>>varamount)); \
74 #define Dbl_leftshift(srcdstA, srcdstB, varamount) \ argument
75 {if((varamount) >= 32) { \
76 Dallp1(srcdstA) = Dallp2(srcdstB) << (varamount-32); \
80 if ((varamount) > 0) { \
81 Dallp1(srcdstA) = (Dallp1(srcdstA) << (varamount)) | \
82 (Dallp2(srcdstB) >> (32-(varamount))); \
83 Dallp2(srcdstB) <<= varamount; \