/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | CallGraphSort.cpp | 132 static int getLeader(std::vector<int> &leaders, int v) { in getLeader() argument 133 while (leaders[v] != v) { in getLeader() 134 leaders[v] = leaders[leaders[v]]; in getLeader() 135 v = leaders[v]; in getLeader() 157 std::vector<int> leaders(clusters.size()); in run() local 159 std::iota(leaders.begin(), leaders.end(), 0); in run() 174 int predL = getLeader(leaders, c.bestPred.from); in run() 185 leaders[l] = predL; in run()
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | CallGraphSort.cpp | 170 static int getLeader(int *leaders, int v) { in mergeClusters() 171 while (leaders[v] != v) { in mergeClusters() 172 leaders[v] = leaders[leaders[v]]; in mergeClusters() 173 v = leaders[v]; in mergeClusters() 195 std::unique_ptr<int[]> leaders(new int[clusters.size()]); in run() 197 std::iota(leaders.get(), leaders.get() + clusters.size(), 0); in run() 212 int predL = getLeader(leaders in run() 159 getLeader(int * leaders,int v) getLeader() argument 184 std::unique_ptr<int[]> leaders(new int[clusters.size()]); run() local [all...] |
/freebsd/contrib/llvm-project/lld/MachO/ |
H A D | SectionPriorities.cpp | 136 static int getLeader(std::vector<int> &leaders, int v) { in getLeader() argument 137 while (leaders[v] != v) { in getLeader() 138 leaders[v] = leaders[leaders[v]]; in getLeader() 139 v = leaders[v]; in getLeader() 165 std::vector<int> leaders(clusters.size()); in run() local 167 std::iota(leaders.begin(), leaders.end(), 0); in run() 183 int predL = getLeader(leaders, c.bestPred.from); in run() 195 leaders[l] = predL; in run()
|
/freebsd/contrib/one-true-awk/testdir/ |
H A D | funstack.awk | 721 LEADERS = " . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ." 725 # increased, the LEADERS string may need to be 728 MIN_LEADERS = 4 # Minimum number of characters from LEADERS 729 # required when leaders are used. The total 732 # Leaders are omitted when the title length is 805 function print_toc_line(author,title,pages, extra,leaders,n,t) 811 if (pages == "") # then no leaders needed in title lines other than last one 817 if (n <= MAX_TITLE_CHARS) # then need leaders 818 leaders = substr(LEADERS, 1, MAX_TITLE_CHARS + MIN_LEADERS - extra - \ 820 else # title (almost) fills line, so no leaders [all …]
|
H A D | funstack.in | 22505 …show the important role played by frequently chosen laboratory reference leaders in influencing th… 22511 … information storage; information use; interactive; laboratory reference leaders; medical; medical…
|
H A D | bib | 11897 And the LORD sent an angel, which cut off all the mighty men of valour, and the leaders and captain… 17846 For the leaders of this people cause them to err; and they that are led of them are destroyed. 23648 Let them alone: they be blind leaders of the blind. And if the blind lead the blind, both shall fal…
|
/freebsd/share/doc/usd/21.troff/ |
H A D | m3 | 40 Tabs, Leaders, and Fields 42 Tabs and leaders. 50 The default difference is that tabs generate motion and leaders generate 81 Tabs or leaders found after the last tab stop are ignored, but may be used 84 Tabs and leaders are not interpreted in \fIcopy mode\fR. 87 are equivalent to actual tabs and leaders in \fIcopy mode\fR.
|
H A D | m0a | 192 Tabs, Leaders, and Fields
|
/freebsd/sys/contrib/device-tree/Bindings/soc/qcom/ |
H A D | qcom,rpm-master-stats.yaml | 14 of "RPM Masters". They can be thought of as "the local gang leaders", usually
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | IntEqClasses.cpp | 36 // Update pointers while searching for the leaders, compressing the paths in join()
|
H A D | KnownBits.cpp | 1053 uint32_t Leaders = in urem() local 1055 Known.Zero.setHighBits(Leaders); in urem()
|
/freebsd/lib/libsys/ |
H A D | rfork.2 | 58 If set, the new process shares file descriptor to process leaders table
|
/freebsd/sbin/init/ |
H A D | NOTES | 59 Process group leaders cannot call setsid() -- another reason to
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | NewGVN.cpp | 547 // leaders. When we discover new leaders for those expressions, we process the 549 // other way they may change is if they had leaders, and those leaders 550 // disappear. However, at the point they have leaders, there are uses of the 1145 // their leaders. 2151 // do for regular leaders. in getNextMemoryLeader() 2241 // Update OldClass and NewClass for the move (including changing leaders, etc). 2290 // See if we destroyed the class or need to swap leaders. in moveValueToNewCongruenceClass() 2832 // We have leaders for all operands, but do not create a real PHI node with in makePossiblePHIOfOps() 2833 // those leaders as operands, so the link between the operands and the in makePossiblePHIOfOps() 2834 // PHI-of-ops is not materialized in the IR. If any of those leaders in makePossiblePHIOfOps() [all …]
|
H A D | GVN.cpp | 2294 auto Leaders = Gvn.LeaderTable.getLeaders(Num); in areCallValsEqual() local 2295 for (const auto &Entry : Leaders) { in areCallValsEqual() 2391 auto Leaders = LeaderTable.getLeaders(num); in findLeader() local 2392 if (Leaders.empty()) in findLeader() 2396 for (const auto &Entry : Leaders) { in findLeader()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | EquivalenceClasses.h | 175 // Only leaders provide anything to iterate over. in member_begin()
|
/freebsd/sbin/reboot/ |
H A D | reboot.c | 399 * parents, group leaders, etc. in main()
|
/freebsd/sys/kern/ |
H A D | kern_fork.c | 440 * process leaders. in do_fork() 446 * process leaders. in do_fork()
|
H A D | kern_descrip.c | 1342 * process leaders can be traversed in closef(). in closefp_hl() 2811 * shared between multiple process leaders. in closef()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | kmp_barrier.cpp | 316 do { // wait for all group leaders in __kmp_dist_barrier_gather() 349 if (KMP_MASTER_TID(tid)) { // Master reduces over group leaders in __kmp_dist_barrier_gather() 392 // workers and non-master group leaders need to check their presence in team in __kmp_dist_barrier_release() 516 // Tell all the group leaders they can go! in __kmp_dist_barrier_release() 522 // Wake-up the group leaders in __kmp_dist_barrier_release()
|
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | IRSymtab.cpp | 195 // Internal leaders do not affect symbol resolution, therefore they do not in getComdatIndex()
|
/freebsd/sbin/fsck_msdosfs/ |
H A D | fat.c | 961 * there is still head nodes, these would be leaders of lost in readfat()
|
/freebsd/bin/sh/ |
H A D | sh.1 | 2450 option is specified, only the process IDs for the process group leaders
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | LoadStoreVectorizer.cpp | 57 // that came before. To limit this, we only calculate the offset to the leaders
|
/freebsd/contrib/tzdata/ |
H A D | northamerica | 39 # spent months in dialogs with scientific and railway leaders, 2524 # * 4 of 16 district leaders announced they'll ignore the decree.
|