reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
288 SmallVector<unsigned, 8> MinPartitions(N); 290 SmallVector<unsigned, 8> LastElement(N); 295 MinPartitions[N - 1] = 1; 296 LastElement[N - 1] = N - 1; 296 LastElement[N - 1] = N - 1; 299 for (int64_t i = N - 2; i >= 0; --i) { 307 for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) { 330 unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]); 341 for (unsigned First = 0, Last; First < N; First = Last + 1) {