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

References

lib/Support/APInt.cpp
 1474   if ((Remainder?4:3)*n+2*m+1 <= 128) {
 1476     V = &SPACE[m+n+1];
 1477     Q = &SPACE[(m+n+1) + n];
 1479       R = &SPACE[(m+n+1) + n + (m+n)];
 1479       R = &SPACE[(m+n+1) + n + (m+n)];
 1481     U = new uint32_t[m + n + 1];
 1483     Q = new uint32_t[m+n];
 1489   memset(U, 0, (m+n+1)*sizeof(uint32_t));
 1495   U[m+n] = 0; // this extra word is for "spill" in the Knuth algorithm.
 1506   memset(Q, 0, (m+n) * sizeof(uint32_t));
 1516     m++;
 1518   for (unsigned i = m+n; i > 0 && U[i-1] == 0; i--)
 1519     m--;
 1531     for (int i = m; i >= 0; i--) {
 1552     KnuthDiv(U, V, Q, R, m, n);