srcB 88 arch/parisc/math-emu/cnv_float.h #define Dbl_to_sgl_mantissa(srcA,srcB,dest,inexact,guard,sticky,odd) \ srcB 89 arch/parisc/math-emu/cnv_float.h Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \ srcB 90 arch/parisc/math-emu/cnv_float.h guard = Dbit3p2(srcB); \ srcB 91 arch/parisc/math-emu/cnv_float.h sticky = Dallp2(srcB)<<4; \ srcB 93 arch/parisc/math-emu/cnv_float.h odd = Dbit2p2(srcB) srcB 95 arch/parisc/math-emu/cnv_float.h #define Dbl_to_sgl_denormalized(srcA,srcB,exp,dest,inexact,guard,sticky,odd,tiny) \ srcB 100 arch/parisc/math-emu/cnv_float.h inexact = Dallp2(srcB) << 3; \ srcB 103 arch/parisc/math-emu/cnv_float.h Shiftdouble(Dmantissap1(srcA),Dmantissap2(srcB),29,dest); \ srcB 139 arch/parisc/math-emu/cnv_float.h Shiftdouble(Dallp1(srcA),Dallp2(srcB),30,dest); \ srcB 143 arch/parisc/math-emu/cnv_float.h inexact = Dallp2(srcB) << (2 + exp); \ srcB 148 arch/parisc/math-emu/cnv_float.h else Variable_shift_double(Dallp1(srcA),Dallp2(srcB),30-exp,dest); \ srcB 158 arch/parisc/math-emu/cnv_float.h sticky = (inexact << 1) | Dallp2(srcB); \ srcB 159 arch/parisc/math-emu/cnv_float.h inexact |= Dallp2(srcB); \ srcB 164 arch/parisc/math-emu/cnv_float.h inexact = Dallp1(srcA) | Dallp2(srcB); \ srcB 167 arch/parisc/math-emu/cnv_float.h sticky = Dmantissap1(srcA) | Dallp2(srcB); \ srcB 277 arch/parisc/math-emu/cnv_float.h #define Dint_copytoptr(srcA,srcB,dest) \ srcB 279 arch/parisc/math-emu/cnv_float.h dest->wd1 = Dintp2(srcB) srcB 303 arch/parisc/math-emu/cnv_float.h #define Duint_copytoptr(srcA,srcB,dest) \ srcB 304 arch/parisc/math-emu/cnv_float.h Dint_copytoptr(srcA,srcB,dest) srcB 355 arch/parisc/math-emu/cnv_float.h #define Suint_from_dbl_mantissa(srcA,srcB,exponent,dest) \ srcB 356 arch/parisc/math-emu/cnv_float.h Shiftdouble(Dallp1(srcA),Dallp2(srcB),21,dest); \