Searched refs:srcdstA (Results 1 – 2 of 2) sorted by relevance
/linux-3.4.99/arch/parisc/math-emu/ |
D | dbl_float.h | 64 #define Dbl_rightshift(srcdstA, srcdstB, varamount) \ argument 66 Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \ 67 Dallp1(srcdstA)=0; \ 70 Variable_shift_double(Dallp1(srcdstA), Dallp2(srcdstB), \ 72 Dallp1(srcdstA) >>= varamount; \ 75 #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ argument 77 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \ 78 Dallp1(srcdstA) &= ((unsigned int)1<<31); /* clear expmant field */ \ 81 Variable_shift_double(Dexponentmantissap1(srcdstA), Dallp2(srcdstB), \ 83 Deposit_dexponentmantissap1(srcdstA, \ [all …]
|
D | sgl_float.h | 348 #define Sglext_right_align(srcdstA,srcdstB,shift) \ argument 355 Variable_shift_double(Sextallp1(srcdstA), \ 357 Sextallp1(srcdstA) >>= shiftamt; \ 361 sticky = (Sextallp1(srcdstA) << 32 - (shiftamt)) | \ 367 Sextallp2(srcdstB) = Sextallp1(srcdstA) >> shiftamt; \ 368 Sextallp1(srcdstA) = 0; \ 389 #define Sglext_arithrightshiftby1(srcdstA,srcdstB) \ argument 390 Shiftdouble(Sextallp1(srcdstA),Sextallp2(srcdstB),1,Sextallp2(srcdstB)); \ 391 Sextallp1(srcdstA) = (int)Sextallp1(srcdstA) >> 1
|