Lines Matching refs:y
668 int p, y; in IExp() local
670 y = 1; in IExp()
674 if (n & 1) { y *= p; } in IExp()
676 if (n == 0) { return y; } in IExp()
693 u32 y; in ILog10() local
698 y = (19 * (31 - CntLz(x))) >> 6; in ILog10()
699 y += ((table2[y + 1] - x) >> 31); in ILog10()
701 return y; in ILog10()
721 unsigned int y; in CntLz_() local
727 y = x >> c; in CntLz_()
728 if (y != 0) in CntLz_()
730 n -= c; x = y; in CntLz_()