Lines Matching defs:pow_i
2151 s32 pow_i;
2157 pow_i = (buf[0] << 16) | buf[1];
2158 dprintk("raw pow_i = %d\n", pow_i);
2160 tmp_val = pow_i;
2164 mant = (pow_i * 1000 / (1 << exp));
2170 pow_i = (lut_1000ln_mant[ix] + 693 * (exp - 20) - 6908);
2171 pow_i = (pow_i << 8) / 1000;
2172 dprintk(" pow_i = %d\n", pow_i);
2174 return pow_i;