varamount 51 arch/parisc/math-emu/dbl_float.h #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ varamount 52 arch/parisc/math-emu/dbl_float.h {if((varamount) >= 32) { \ varamount 53 arch/parisc/math-emu/dbl_float.h Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \ varamount 56 arch/parisc/math-emu/dbl_float.h else if(varamount > 0) { \ varamount 58 arch/parisc/math-emu/dbl_float.h (varamount), Dallp2(srcdstB)); \ varamount 59 arch/parisc/math-emu/dbl_float.h Dallp1(srcdstA) >>= varamount; \ varamount 62 arch/parisc/math-emu/dbl_float.h #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ varamount 63 arch/parisc/math-emu/dbl_float.h {if((varamount) >= 32) { \ varamount 64 arch/parisc/math-emu/dbl_float.h Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \ varamount 67 arch/parisc/math-emu/dbl_float.h else if(varamount > 0) { \ varamount 69 arch/parisc/math-emu/dbl_float.h (varamount), Dallp2(srcdstB)); \ varamount 71 arch/parisc/math-emu/dbl_float.h (Dexponentmantissap1(srcdstA)>>varamount)); \ varamount 74 arch/parisc/math-emu/dbl_float.h #define Dbl_leftshift(srcdstA, srcdstB, varamount) \ varamount 75 arch/parisc/math-emu/dbl_float.h {if((varamount) >= 32) { \ varamount 76 arch/parisc/math-emu/dbl_float.h Dallp1(srcdstA) = Dallp2(srcdstB) << (varamount-32); \ varamount 80 arch/parisc/math-emu/dbl_float.h if ((varamount) > 0) { \ varamount 81 arch/parisc/math-emu/dbl_float.h Dallp1(srcdstA) = (Dallp1(srcdstA) << (varamount)) | \ varamount 82 arch/parisc/math-emu/dbl_float.h (Dallp2(srcdstB) >> (32-(varamount))); \ varamount 83 arch/parisc/math-emu/dbl_float.h Dallp2(srcdstB) <<= varamount; \ varamount 41 arch/parisc/math-emu/sgl_float.h #define Sgl_rightshift(srcdst, varamount) \ varamount 42 arch/parisc/math-emu/sgl_float.h Sall(srcdst) >>= varamount varamount 43 arch/parisc/math-emu/sgl_float.h #define Sgl_leftshift(srcdst, varamount) \ varamount 44 arch/parisc/math-emu/sgl_float.h Sall(srcdst) <<= varamount varamount 45 arch/parisc/math-emu/sgl_float.h #define Sgl_rightshift_exponentmantissa(srcdst, varamount) \ varamount 47 arch/parisc/math-emu/sgl_float.h (Sexponentmantissa(srcdst) >> varamount) | \