Searched refs:varamount (Results 1 – 2 of 2) sorted by relevance
51 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument52 {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) \ argument63 {if((varamount) >= 32) { \64 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \67 else if(varamount > 0) { \[all …]
41 #define Sgl_rightshift(srcdst, varamount) \ argument42 Sall(srcdst) >>= varamount43 #define Sgl_leftshift(srcdst, varamount) \ argument44 Sall(srcdst) <<= varamount45 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument47 (Sexponentmantissa(srcdst) >> varamount) | \