Searched refs:nested_counts (Results 1 – 1 of 1) sorted by relevance
3318 std::stack<int> nested_counts; in Init() local3329 while (values_to_process > 0 || !nested_counts.empty()) { in Init()3331 if (nested_counts.empty()) { in Init()3338 for (size_t j = 0; j < nested_counts.size(); j++) { in Init()3357 nested_counts.push(values_to_process); in Init()3360 while (values_to_process == 0 && !nested_counts.empty()) { in Init()3361 values_to_process = nested_counts.top(); in Init()3362 nested_counts.pop(); in Init()