Home
last modified time | relevance | path

Searched refs:FP_CONV (Results 1 – 11 of 11) sorted by relevance

/kernel/linux/linux-5.10/arch/sparc/math-emu/
Dmath_32.c437 case FSMULD: FP_CONV (D, S, 2, 1, DA, SA); in do_one_mathemu()
438 FP_CONV (D, S, 2, 1, DB, SB); in do_one_mathemu()
440 case FDMULQ: FP_CONV (Q, D, 4, 2, QA, DA); in do_one_mathemu()
441 FP_CONV (Q, D, 4, 2, QB, DB); in do_one_mathemu()
464 case FSTOD: FP_CONV (D, S, 2, 1, DR, SB); break; in do_one_mathemu()
465 case FSTOQ: FP_CONV (Q, S, 4, 1, QR, SB); break; in do_one_mathemu()
466 case FDTOQ: FP_CONV (Q, D, 4, 2, QR, DB); break; in do_one_mathemu()
467 case FDTOS: FP_CONV (S, D, 1, 2, SR, DB); break; in do_one_mathemu()
468 case FQTOS: FP_CONV (S, Q, 1, 4, SR, QB); break; in do_one_mathemu()
469 case FQTOD: FP_CONV (D, Q, 2, 4, DR, QB); break; in do_one_mathemu()
Dmath_64.c442 case FSMULD: FP_CONV (D, S, 1, 1, DA, SA); in do_mathemu()
443 FP_CONV (D, S, 1, 1, DB, SB); in do_mathemu()
445 case FDMULQ: FP_CONV (Q, D, 2, 1, QA, DA); in do_mathemu()
446 FP_CONV (Q, D, 2, 1, QB, DB); in do_mathemu()
478 case FSTOD: FP_CONV (D, S, 1, 1, DR, SB); break; in do_mathemu()
479 case FSTOQ: FP_CONV (Q, S, 2, 1, QR, SB); break; in do_mathemu()
480 case FDTOQ: FP_CONV (Q, D, 2, 1, QR, DB); break; in do_mathemu()
481 case FDTOS: FP_CONV (S, D, 1, 1, SR, DB); break; in do_mathemu()
482 case FQTOS: FP_CONV (S, Q, 1, 2, SR, QB); break; in do_mathemu()
483 case FQTOD: FP_CONV (D, Q, 1, 2, DR, QB); break; in do_mathemu()
/kernel/linux/linux-5.10/arch/nds32/math-emu/
Dfs2d.c18 FP_CONV(D, S, 2, 1, R, A); in fs2d()
Dfd2s.c17 FP_CONV(S, D, 1, 2, R, A); in fd2s()
/kernel/linux/linux-5.10/arch/powerpc/math-emu/
Dlfs.c33 FP_CONV(D, S, 2, 1, R, A); in lfs()
Dstfs.c29 FP_CONV(S, D, 1, 2, R, A); in stfs()
Dmath_efp.c293 FP_CONV(S, D, 1, 2, SR, DB); in do_spe_mathemu()
423 FP_CONV(D, S, 2, 1, DR, SB); in do_spe_mathemu()
/kernel/linux/linux-5.10/arch/powerpc/include/asm/
Dsfp-machine.h184 FP_CONV(S, D, 1, 2, __X, X); \
188 FP_CONV(D, S, 2, 1, X, __X); \
/kernel/linux/linux-5.10/arch/sh/math-emu/
Dmath.c323 FP_CONV(D, S, 2, 1, Fr, Fn); in fcnvsd()
334 FP_CONV(S, D, 1, 2, Fr, Fn); in fcnvds()
/kernel/linux/linux-5.10/arch/alpha/math-emu/
Dmath.c224 FP_CONV(S,D,1,1,SR,DB); in alpha_fp_emul()
/kernel/linux/linux-5.10/include/math-emu/
Dop-common.h826 #define FP_CONV(dfs,sfs,dwc,swc,D,S) \ macro