Home
last modified time | relevance | path

Searched refs:varamount (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/sys/arch/hppa/spmath/
H A Ddbl_float.h88 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument
89 {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) \ argument
100 {if((varamount) >= 32) { \
101 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> ((varamount)-32); \
104 else if(varamount > 0) { \
[all …]
H A Dsgl_float.h77 #define Sgl_rightshift(srcdst, varamount) \ argument
78 Sall(srcdst) >>= varamount
79 #define Sgl_leftshift(srcdst, varamount) \ argument
80 Sall(srcdst) <<= varamount
81 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument
83 (Sexponentmantissa(srcdst) >> (varamount)) | (Sall(srcdst) & (1<<31))