Lines Matching defs:tmp
40 uint64_t iz, tmp;
46 tmp = ix - OFF;
47 i = (tmp >> (52 - POW_LOG_TABLE_BITS)) % N;
48 k = (int64_t)tmp >> 52; /* arithmetic shift */
49 iz = ix - (tmp & 0xfffULL << 52);
124 static inline double specialcase(double_t tmp, uint64_t sbits, uint64_t ki)
132 y = 0x1p1009 * (scale + scale * tmp);
139 y = scale + scale * tmp;
148 lo = scale - y + scale * tmp;
171 double_t kd, z, r, r2, scale, tail, tmp;
224 tmp = tail + r + r2 * (C2 + r * C3) + r2 * r2 * (C4 + r * C5);
226 return specialcase(tmp, sbits, ki);
228 /* Note: tmp == 0 or |tmp| > 2^-200 and scale > 2^-739, so there
230 return eval_as_double(scale + scale * tmp);