Lines Matching defs:tmp
183 union fp_mant128 tmp;
225 fp_mul64(tmp.m32[0], tmp.m32[1], div->mant.m32[0], first - *mantp);
226 fp_add64(tmp.m32[0], tmp.m32[1], 0, rem);
227 tmp.m32[2] = 0;
230 fp_sub96c(tmp, 0, tmp64.m32[0], tmp64.m32[1]);
232 src->mant.m32[0] = tmp.m32[1];
233 src->mant.m32[1] = tmp.m32[2];
235 while (!fp_sub96c(tmp, 0, div->mant.m32[0], div->mant.m32[1])) {
236 src->mant.m32[0] = tmp.m32[1];
237 src->mant.m32[1] = tmp.m32[2];
246 unsigned long tmp;
257 : "=d" (tmp) : "0" (src->m32[2]));
262 dest->lowmant = tmp >> 24;
263 if (src->m32[3] || (tmp << 8))
273 : "=d" (tmp) : "0" (src->m32[3]));
274 dest->lowmant = tmp >> 24;