reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/APInt.cpp
 1118       x_old = x_old.shl(i / 2);
 1118       x_old = x_old.shl(i / 2);
 1124     x_new = (this->udiv(x_old) + x_old).udiv(two);
 1124     x_new = (this->udiv(x_old) + x_old).udiv(two);
 1125     if (x_old.ule(x_new))
 1127     x_old = x_new;
 1136   APInt square(x_old * x_old);
 1136   APInt square(x_old * x_old);
 1137   APInt nextSquare((x_old + 1) * (x_old +1));
 1137   APInt nextSquare((x_old + 1) * (x_old +1));
 1139     return x_old;
 1144     return x_old;
 1145   return x_old + 1;