Searched refs:varamount (Results 1 – 2 of 2) sorted by relevance
64 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument65 {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) \ argument76 {if((varamount) >= 32) { \77 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \80 else if(varamount > 0) { \[all …]
54 #define Sgl_rightshift(srcdst, varamount) \ argument55 Sall(srcdst) >>= varamount56 #define Sgl_leftshift(srcdst, varamount) \ argument57 Sall(srcdst) <<= varamount58 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument60 (Sexponentmantissa(srcdst) >> varamount) | \