Searched refs:workList (Results 1 – 5 of 5) sorted by relevance
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
D | DominanceFrontierImpl.h | 165 std::vector<DFCalculateWorkObject<BlockT>> workList; in calculate() local 168 workList.push_back(DFCalculateWorkObject<BlockT>(BB, nullptr, Node, nullptr)); in calculate() 170 DFCalculateWorkObject<BlockT> *currentW = &workList.back(); in calculate() 201 workList.push_back(DFCalculateWorkObject<BlockT>( in calculate() 221 workList.pop_back(); in calculate() 224 } while (!workList.empty()); in calculate()
|
/third_party/glslang/StandAlone/ |
D | StandAlone.cpp | 1272 glslang::TWorklist workList; in singleMain() local 1273 …std::for_each(WorkItems.begin(), WorkItems.end(), [&workList](std::unique_ptr<glslang::TWorkItem>&… in singleMain() 1275 workList.add(item.get()); in singleMain() 1281 if (workList.empty()) in singleMain() 1289 if (workList.empty()) in singleMain() 1304 if (workList.empty()) in singleMain() 1308 if (workList.empty() && ((Options & EOptionStdin) == 0)) { in singleMain() 1314 workList.add(WorkItems.back().get()); in singleMain() 1333 CompileAndLinkShaderFiles(workList); in singleMain() 1340 bool printShaderNames = workList.size() > 1; in singleMain() [all …]
|
/third_party/flutter/skia/src/sksl/ |
D | SkSLCompiler.cpp | 397 void Compiler::scanCFG(CFG* cfg, BlockId blockId, std::set<BlockId>* workList) { in scanCFG() argument 417 workList->insert(exitId); in scanCFG() 424 workList->insert(exitId); in scanCFG() 499 std::set<BlockId> workList; in computeDataFlow() local 501 workList.insert(i); in computeDataFlow() 503 while (workList.size()) { in computeDataFlow() 504 BlockId next = *workList.begin(); in computeDataFlow() 505 workList.erase(workList.begin()); in computeDataFlow() 506 this->scanCFG(cfg, next, &workList); in computeDataFlow()
|
D | SkSLCompiler.h | 164 void scanCFG(CFG* cfg, BlockId block, std::set<BlockId>* workList);
|
/third_party/mesa3d/src/gallium/drivers/nouveau/codegen/ |
D | nv50_ir_ssa.cpp | 332 DLList workList; in convertToSSA() local 364 workList.insert(bb); in convertToSSA() 369 for (DLList::Iterator wI = workList.iterator(); !wI.end(); wI.erase()) { in convertToSSA()
|