Home
last modified time | relevance | path

Searched refs:FPU_SUBCS (Results 1 – 5 of 5) sorted by relevance

/original-bsd/sys/sparc/fpu/
H A Dfpu_add.c148 FPU_SUBCS(r3, x->fp_mant[3], y->fp_mant[3]);
149 FPU_SUBCS(r2, x->fp_mant[2], y->fp_mant[2]);
150 FPU_SUBCS(r1, x->fp_mant[1], y->fp_mant[1]);
173 FPU_SUBCS(r2, 0, r2);
174 FPU_SUBCS(r1, 0, r1);
H A Dfpu_sqrt.c307 FPU_SUBCS(d1, x1, t1);
319 FPU_SUBCS(d1, x1, t1);
340 FPU_SUBCS(d2, x2, t2);
341 FPU_SUBCS(d1, x1, t1);
353 FPU_SUBCS(d2, x2, t2);
354 FPU_SUBCS(d1, x1, t1);
H A Dfpu_compare.c127 FPU_SUBCS(r2, a->fp_mant[1], b->fp_mant[1]); in fpu_compare()
128 FPU_SUBCS(r1, a->fp_mant[2], b->fp_mant[2]); in fpu_compare()
H A Dfpu_div.c180 FPU_SUBS(d3, r3, y3); FPU_SUBCS(d2, r2, y2); \
181 FPU_SUBCS(d1, r1, y1); FPU_SUBC(d0, r0, y0)
H A Dfpu_arith.h64 #define FPU_SUBCS(r, x, y) \ macro