Lines Matching refs:R
29 #define _FP_FRAC_ADD_1(R,X,Y) (R##_f = X##_f + Y##_f) argument
30 #define _FP_FRAC_SUB_1(R,X,Y) (R##_f = X##_f - Y##_f) argument
82 #define _FP_MUL_MEAT_1_imm(fs, R, X, Y) \ argument
84 R##_f = X##_f * Y##_f; \
88 _FP_FRAC_SRS_1(R, _FP_WFRACBITS_##fs-1, 2*_FP_WFRACBITS_##fs); \
93 #define _FP_MUL_MEAT_1_wide(fs, R, X, Y, doit) \ argument
101 R##_f = _Z_f0; \
106 #define _FP_MUL_MEAT_1_hard(fs, R, X, Y) \ argument
131 R##_f = _z_f0; \
144 #define _FP_DIV_MEAT_1_imm(fs, R, X, Y, doit) \ argument
148 ? R##_e--, _FP_WFRACBITS_##fs \
151 R##_f = _q | (_r != 0); \
159 #define _FP_DIV_MEAT_1_udiv_norm(fs, R, X, Y) \ argument
174 R##_e++; \
180 R##_f = _q | (_r != 0); \
183 #define _FP_DIV_MEAT_1_udiv(fs, R, X, Y) \ argument
188 R##_e--; \
198 R##_f = _q | (_r != 0); \
208 #define _FP_SQRT_MEAT_1(R, S, T, X, q) \ argument
217 R##_f += q; \