Lines Matching defs:temp
46 double_accessor t, temp;
49 temp.dbl = x;
51 sign = temp.as_int.hi & 0x80000000; /* sign = sign(x) */
52 temp.as_int.hi ^= sign;
54 if (temp.as_int.hi >= 0x7ff00000)
59 if ((temp.as_int.hi | temp.as_int.lo) == 0)
65 if (temp.as_int.hi < 0x00100000) /* subnormal number */
68 t.dbl *= temp.dbl;
73 t.as_int.hi = temp.as_int.hi / 3 + B1;
77 r = t.dbl * t.dbl / temp.dbl;
87 r = temp.dbl / s;