Home
last modified time | relevance | path

Searched refs:worklist (Results 1 – 20 of 20) sorted by relevance

/freebsd-13.1/sys/ufs/ffs/
H A Dsoftdep.h211 struct worklist { struct
294 struct worklist pd_list; /* page buffer */
397 struct worklist sm_list; /* cylgrp buffer */
427 struct worklist nb_list; /* See comment above. */
609 struct worklist fw_list; /* Delayed worklist. */
633 struct worklist fd_list; /* Delayed worklist. */
743 struct worklist dm_list; /* delayed worklist */
879 struct worklist jn_list; /* See lists above. */
960 struct worklist jd_list; /* See above for lists. */
975 struct worklist js_list; /* b_deps link for journal */
[all …]
H A Dffs_softdep.c899 static struct worklist *jnewblk_merge(struct worklist *, struct worklist *,
1140 struct worklist *wkn;
1141 struct worklist *wk;
1172 struct worklist *wk;
1715 struct worklist *wk; in add_to_worklist()
1746 struct worklist *wk; in remove_from_worklist()
1760 struct worklist *wk; in wake_worklist()
1770 struct worklist *wk; in wait_worklist()
1971 struct worklist *wk;
2321 struct worklist *wk;
[all …]
H A Dffs_alloc.c2676 LIST_SWAP(dephd, &blkelm->dephd, worklist, wk_list);
/freebsd-13.1/contrib/llvm-project/clang/lib/Analysis/
H A DCFGReachabilityAnalysis.cpp43 SmallVector<const CFGBlock *, 11> worklist; in mapReachability() local
51 worklist.push_back(Dst); in mapReachability()
54 while (!worklist.empty()) { in mapReachability()
55 const CFGBlock *block = worklist.pop_back_val(); in mapReachability()
73 worklist.push_back(*i); in mapReachability()
H A DLiveVariables.cpp517 BackwardDataflowWorklist worklist(*cfg, AC); in computeLiveness() local
522 worklist.enqueueBlock(B); in computeLiveness()
525 while (const CFGBlock *block = worklist.dequeue()) { in computeLiveness()
550 worklist.enqueuePredecessors(block); in computeLiveness()
H A DUninitializedValues.cpp935 ForwardDataflowWorklist worklist(cfg, ac); in runUninitializedVariablesAnalysis() local
937 worklist.enqueueSuccessors(&cfg.getEntry()); in runUninitializedVariablesAnalysis()
942 while (const CFGBlock *block = worklist.dequeue()) { in runUninitializedVariablesAnalysis()
950 worklist.enqueueSuccessors(block); in runUninitializedVariablesAnalysis()
/freebsd-13.1/contrib/llvm-project/lld/COFF/
H A DMarkLive.cpp29 SmallVector<SectionChunk *, 256> worklist; in markLive() local
37 worklist.push_back(sc); in markLive()
43 worklist.push_back(c); in markLive()
59 while (!worklist.empty()) { in markLive()
60 SectionChunk *sc = worklist.pop_back_val(); in markLive()
/freebsd-13.1/contrib/llvm-project/lld/MachO/
H A DMarkLive.cpp35 SmallVector<ConcatInputSection *, 256> worklist; in markLive() local
43 worklist.push_back(s); in markLive()
148 while (!worklist.empty()) { in markLive()
149 ConcatInputSection *s = worklist.pop_back_val(); in markLive()
184 } while (!worklist.empty()); in markLive()
/freebsd-13.1/lib/libthr/thread/
H A Dthr_list.c102 TAILQ_HEAD(, pthread) worklist; in _thr_gc()
104 TAILQ_INIT(&worklist); in _thr_gc()
115 TAILQ_INSERT_HEAD(&worklist, td, gcle); in _thr_gc()
119 while ((td = TAILQ_FIRST(&worklist)) != NULL) { in _thr_gc()
120 TAILQ_REMOVE(&worklist, td, gcle); in _thr_gc()
/freebsd-13.1/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DDeadStoresChecker.cpp87 SmallVector<const CFGBlock*, 10> worklist; in computeReachableBlocks() local
88 worklist.push_back(&cfg.getEntry()); in computeReachableBlocks()
90 while (!worklist.empty()) { in computeReachableBlocks()
91 const CFGBlock *block = worklist.pop_back_val(); in computeReachableBlocks()
99 worklist.push_back(succ); in computeReachableBlocks()
/freebsd-13.1/sys/geom/bde/
H A Dg_bde_work.c123 TAILQ_INSERT_TAIL(&sc->worklist, wp, list); in g_bde_new_work()
135 TAILQ_REMOVE(&sc->worklist, wp, list); in g_bde_delete_work()
300 TAILQ_FOREACH(wp2, &sc->worklist, list) { in g_bde_release_keysector()
578 TAILQ_FOREACH_SAFE(wp, &sc->worklist, list, twp) { in g_bde_worker()
H A Dg_bde.h134 TAILQ_HEAD(, g_bde_work) worklist;
H A Dg_bde.c189 TAILQ_INIT(&sc->worklist); in g_bde_create_geom()
/freebsd-13.1/contrib/bsnmp/lib/
H A Dsnmpclient.c110 TAILQ_HEAD(worklist, work);
118 struct worklist worklist; member
152 while ((w = TAILQ_FIRST(&work->worklist)) != NULL) { in table_free()
153 TAILQ_REMOVE(&work->worklist, w, link); in table_free()
192 w = TAILQ_FIRST(&work->worklist); in table_find()
331 w1 = TAILQ_FIRST(&work->worklist); in table_find()
340 TAILQ_INSERT_TAIL(&work->worklist, w, link); in table_find()
575 TAILQ_INIT(&work.worklist); in snmp_table_fetch()
725 TAILQ_INIT(&work->worklist); in snmp_table_fetch_async()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFixSGPRCopies.cpp778 SetVector<const MachineInstr *> worklist; in processPHINode() local
782 worklist.insert(&MI); in processPHINode()
784 while (!worklist.empty()) { in processPHINode()
785 const MachineInstr *Instr = worklist.pop_back_val(); in processPHINode()
799 worklist.insert(UseMI); in processPHINode()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyValueInfo.cpp298 std::vector<BasicBlock*> worklist; in threadEdgeImpl() local
299 worklist.push_back(OldSucc); in threadEdgeImpl()
311 while (!worklist.empty()) { in threadEdgeImpl()
312 BasicBlock *ToUpdate = worklist.back(); in threadEdgeImpl()
313 worklist.pop_back(); in threadEdgeImpl()
336 llvm::append_range(worklist, successors(ToUpdate)); in threadEdgeImpl()
/freebsd-13.1/usr.sbin/newsyslog/
H A Dnewsyslog.c305 struct cflist *worklist; in main() local
319 worklist = get_worklist(argv); in main()
325 while (!STAILQ_EMPTY(worklist)) { in main()
326 p = STAILQ_FIRST(worklist); in main()
327 STAILQ_REMOVE_HEAD(worklist, cf_nextp); in main()
/freebsd-13.1/sys/sys/
H A Dbuf.h59 LIST_HEAD(workhead, worklist);
/freebsd-13.1/sys/kern/
H A Dkern_sig.c587 sigqueue_t worklist; in sigqueue_delete_set_proc() local
592 sigqueue_init(&worklist, NULL); in sigqueue_delete_set_proc()
593 sigqueue_move_set(&p->p_sigqueue, &worklist, set); in sigqueue_delete_set_proc()
596 sigqueue_move_set(&td0->td_sigqueue, &worklist, set); in sigqueue_delete_set_proc()
598 sigqueue_flush(&worklist); in sigqueue_delete_set_proc()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp5112 SmallVector<Value*, 8> worklist; in optimizeMemoryInst() local
5114 worklist.push_back(Addr); in optimizeMemoryInst()
5126 while (!worklist.empty()) { in optimizeMemoryInst()
5127 Value *V = worklist.back(); in optimizeMemoryInst()
5128 worklist.pop_back(); in optimizeMemoryInst()
5144 append_range(worklist, P->incoming_values()); in optimizeMemoryInst()
5150 worklist.push_back(SI->getFalseValue()); in optimizeMemoryInst()
5151 worklist.push_back(SI->getTrueValue()); in optimizeMemoryInst()