Home
last modified time | relevance | path

Searched refs:srcdstA (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
53 Dallp2(srcdstB) = Dallp1(srcdstA) >> (varamount-32); \
54 Dallp1(srcdstA)=0; \
57 Variable_shift_double(Dallp1(srcdstA), Dallp2(srcdstB), \
59 Dallp1(srcdstA) >>= varamount; \
62 #define Dbl_rightshift_exponentmantissa(srcdstA, srcdstB, varamount) \ argument
64 Dallp2(srcdstB) = Dexponentmantissap1(srcdstA) >> (varamount-32); \
65 Dallp1(srcdstA) &= ((unsigned int)1<<31); /* clear expmant field */ \
68 Variable_shift_double(Dexponentmantissap1(srcdstA), Dallp2(srcdstB), \
70 Deposit_dexponentmantissap1(srcdstA, \
[all …]
Dsgl_float.h335 #define Sglext_right_align(srcdstA,srcdstB,shift) \ argument
342 Variable_shift_double(Sextallp1(srcdstA), \
344 Sextallp1(srcdstA) >>= shiftamt; \
348 sticky = (Sextallp1(srcdstA) << 32 - (shiftamt)) | \
354 Sextallp2(srcdstB) = Sextallp1(srcdstA) >> shiftamt; \
355 Sextallp1(srcdstA) = 0; \
376 #define Sglext_arithrightshiftby1(srcdstA,srcdstB) \ argument
377 Shiftdouble(Sextallp1(srcdstA),Sextallp2(srcdstB),1,Sextallp2(srcdstB)); \
378 Sextallp1(srcdstA) = (int)Sextallp1(srcdstA) >> 1