Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp90 ++ActiveGroups[GroupOfTask]; // Increment or set to 1 if new item in processTasks()
117 auto A = ActiveGroups.find(GroupOfTask); in processTasks()
119 ActiveGroups.erase(A); in processTasks()
139 return ActiveGroups.count(Group) == 0 && in workCompletedUnlocked()
/freebsd/contrib/llvm-project/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];
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h205 DenseMap<ThreadPoolTaskGroup *, unsigned> ActiveGroups; variable