Home
last modified time | relevance | path

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

/linux-6.1.9/arch/parisc/math-emu/
Ddbl_float.h51 #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) { \
[all …]
Dsgl_float.h41 #define Sgl_rightshift(srcdst, varamount) \ argument
42 Sall(srcdst) >>= varamount
43 #define Sgl_leftshift(srcdst, varamount) \ argument
44 Sall(srcdst) <<= varamount
45 #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ argument
47 (Sexponentmantissa(srcdst) >> varamount) | \