reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1475 U = &SPACE[0]; 1481 U = new uint32_t[m + n + 1]; 1489 memset(U, 0, (m+n+1)*sizeof(uint32_t)); 1492 U[i * 2] = Lo_32(tmp); 1493 U[i * 2 + 1] = Hi_32(tmp); 1495 U[m+n] = 0; // this extra word is for "spill" in the Knuth algorithm. 1518 for (unsigned i = m+n; i > 0 && U[i-1] == 0; i--) 1532 uint64_t partial_dividend = Make_64(remainder, U[i]); 1552 KnuthDiv(U, V, Q, R, m, n); 1568 if (U != &SPACE[0]) { 1569 delete [] U;