Searched refs:varamount (Results 1 – 2 of 2) sorted by relevance
88 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument89 {if((varamount) >= 32) { \90 Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \93 else if(varamount > 0) { \95 (varamount), Dallp2(srcdstB)); \96 Dallp1(srcdstA) >>= varamount; \99 #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ argument100 {if((varamount) >= 32) { \101 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> ((varamount)-32); \104 else if(varamount > 0) { \[all …]
77 #define Sgl_rightshift(srcdst, varamount) \ argument78 Sall(srcdst) >>= varamount79 #define Sgl_leftshift(srcdst, varamount) \ argument80 Sall(srcdst) <<= varamount81 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument83 (Sexponentmantissa(srcdst) >> (varamount)) | (Sall(srcdst) & (1<<31))