Home | History | Annotate | Download | only in fpe

Lines Matching defs:r0

64 	uint32_t r0, r1, r2;
142 FPU_ADDC(r0, x->fp_mant[0], y->fp_mant[0]);
143 if ((r->fp_mant[0] = r0) >= FP_2) {
174 FPU_SUBC(r0, x->fp_mant[0], y->fp_mant[0]);
175 if (r0 < FP_2) {
177 if ((r0 | r1 | r2) == 0) {
197 FPU_SUBC(r0, 0, r0);
201 r->fp_mant[0] = r0;
202 if (r0 < FP_1)