Home
last modified time | relevance | path

Searched refs:ActiveGroups (Results 1 – 3 of 3) sorted by relevance

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DThreadPool.cpp89 ++ActiveGroups[GroupOfTask]; // Increment or set to 1 if new item in processTasks()
116 auto A = ActiveGroups.find(GroupOfTask); in processTasks()
118 ActiveGroups.erase(A); in processTasks()
138 return ActiveGroups.count(Group) == 0 && in workCompletedUnlocked()
/openbsd-src/gnu/llvm/llvm/lib/Support/Windows/
H A DThreading.inc212 auto ActiveGroups = getActiveGroups();
213 if (!ActiveGroups)
224 if (llvm::RunningWindows11OrGreater() && ActiveGroups->size() > 1) {
229 assert(ActiveGroups->size() == 1 &&
233 unsigned CurrentGroupID = (*ActiveGroups)[0];
/openbsd-src/gnu/llvm/llvm/include/llvm/Support/
H A DThreadPool.h207 DenseMap<ThreadPoolTaskGroup *, unsigned> ActiveGroups; variable