Searched refs:walker (Results 26 - 29 of 29) sorted by relevance

12

/freebsd-current/contrib/llvm-project/clang/lib/Analysis/
H A DThreadSafety.cpp2270 // For now, we just use the walker to set things up.
2271 threadSafety::CFGWalker walker;
2272 if (!walker.init(AC))
2276 // threadSafety::printSCFG(walker);
2278 CFG *CFGraph = walker.getGraph();
2279 const NamedDecl *D = walker.getDecl();
2302 const PostOrderCFGView *SortedGraph = walker.getSortedGraph();
/freebsd-current/contrib/expat/lib/
H A Dxmlparse.c7835 const char *walker = before; local
7839 for (; walker < after; walker++) {
7840 fprintf(stderr, "%s", unsignedCharToPrintable(walker[0]));
7843 for (; walker < before + contextLength; walker++) {
7844 fprintf(stderr, "%s", unsignedCharToPrintable(walker[0]));
7847 walker = after - contextLength;
7848 for (; walker < after; walker
[all...]
/freebsd-current/sys/netpfil/ipfilter/netinet/
H A Dradix_ipf.c737 /* walker(I) - function to call for each node in the tree */
738 /* arg(I) - parameter to pass to walker, in addition to the */
742 /* than recursive and tracks the next node in case the "walker" function */
744 /* saying that the "walker" function is not permitted to cause any change */
748 ipf_rx_walktree(ipf_rdx_head_t *head, radix_walk_func_t walker, void *arg) argument
769 walker(node, arg);
/freebsd-current/sys/cam/
H A Dcam_xpt.c5529 struct kv *walker = map; local
5531 while (walker->name != NULL) {
5532 if (walker->v == action)
5533 return (walker->name);
5534 walker++;

Completed in 111 milliseconds

12