Lines Matching defs:temp
135 FPDATA->temp[1] = *dest;
137 return fp_fadd(&FPDATA->temp[1], src);
153 union fp_mant128 temp;
199 fp_multiplymant(&temp, dest, src);
203 if ((long)temp.m32[0] > 0) {
205 fp_putmant128(dest, &temp, 1);
207 fp_putmant128(dest, &temp, 0);
231 union fp_mant128 temp;
286 fp_dividemant(&temp, dest, src);
290 if (!temp.m32[0]) {
292 fp_putmant128(dest, &temp, 32);
294 fp_putmant128(dest, &temp, 31);