Lines Matching refs:utmp
17 unsigned int utmp;
92 utmp = DIV_ROUND_CLOSEST_ULL((u64)if_frequency * 0x1000000, CXD2820R_CLK);
93 buf[0] = (utmp >> 16) & 0xff;
94 buf[1] = (utmp >> 8) & 0xff;
95 buf[2] = (utmp >> 0) & 0xff;
132 unsigned int utmp;
228 ret = regmap_read(priv->regmap[0], 0x07c6, &utmp);
232 switch ((utmp >> 0) & 0x01) {
253 unsigned int utmp, utmp1, utmp2;
288 utmp = buf[0] << 8 | buf[1] << 0;
289 utmp = ~utmp & 0x0fff;
291 strength = utmp << 4 | utmp >> 8;
309 utmp = buf[0] << 8 | buf[1] << 0;
310 if (utmp)
311 cnr = div_u64((u64)(intlog10(utmp)
312 - intlog10(32000 - utmp) + 55532585)