Home
last modified time | relevance | path

Searched full:leader (Results 1 – 25 of 124) sorted by relevance

12345

/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DEquivalenceClasses.h47 /// if (!I->isLeader()) continue; // Ignore non-leader sets.
66 /// "leader pointer" depending on whether the value itself is a leader. A
67 /// "leader pointer" points to the node that is the leader for this element,
68 /// if the node is not a leader. A "end of list pointer" points to the last
70 /// leader is determined by a bit stolen from one of the pointers.
74 mutable const ECValue *Leader, *Next; variable
80 : Leader(this), Next((ECValue*)(intptr_t)1), Data(Elt) {} in ECValue()
84 if (Leader->isLeader()) return Leader; in getLeader()
86 return Leader = Leader->getLeader(); in getLeader()
90 assert(isLeader() && "Cannot get the end of a list for a non-leader!"); in getEndOfList()
[all …]
H A DIntEqClasses.h30 /// equivalence class. The class leader is the smallest member and maps to
58 /// Returns the new leader.
61 /// findLeader - Compute the leader of a's equivalence class. This is the
/freebsd-src/contrib/llvm-project/clang/lib/Analysis/FlowSensitive/
H A DSimplifyConstraints.cpp48 // Returns the result of replacing atoms in `Atoms` with the leader of their
63 // Returns the atoms in the equivalence class for the leader identified by
116 Atom Leader = EquivalentAtoms.getLeaderValue(TheAtom); in simplifyConstraints() local
117 if (TrueAtoms.contains(Leader)) { in simplifyConstraints()
118 if (FalseAtoms.contains(Leader)) { in simplifyConstraints()
123 } else if (FalseAtoms.contains(Leader)) { in simplifyConstraints()
125 } else if (TheAtom != Leader) { in simplifyConstraints()
126 Substitutions.insert({TheAtom, &arena.makeAtomRef(Leader)}); in simplifyConstraints()
/freebsd-src/contrib/llvm-project/llvm/lib/Support/
H A DIntEqClasses.cpp37 // incrementally. The larger leader will eventually be updated, joining the in join()
70 SmallVector<unsigned, 8> Leader; in uncompress() local
72 if (EC[i] < Leader.size()) in uncompress()
73 EC[i] = Leader[EC[i]]; in uncompress()
75 Leader.push_back(EC[i] = i); in uncompress()
/freebsd-src/lib/libc/nameser/
H A Dns_print.c459 const char *leader; in ns_sprintrrf() local
485 leader = "\n\t\t"; in ns_sprintrrf()
488 leader = " "; in ns_sprintrrf()
490 T(addstr(leader, strlen(leader), &buf, &buflen)); in ns_sprintrrf()
506 const char *leader; in ns_sprintrrf() local
547 leader = "\n\t\t"; in ns_sprintrrf()
550 leader = " "; in ns_sprintrrf()
554 T(addstr(leader, strlen(leader), &buf, &buflen)); in ns_sprintrrf()
584 const char *leader; in ns_sprintrrf() local
604 leader = "\n\t\t"; in ns_sprintrrf()
[all …]
/freebsd-src/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp215 // walk the object file's symbol table, once we visit either a leader symbol or in readSection()
216 // an associative section definition together with the parent comdat's leader, in readSection()
305 // relocations, in .rdata, leader symbol name matches the MSVC name mangling in readAssociativeDefinition()
371 // Use the suffix from the .text$<func> instead of the leader symbol in createRegular()
373 // cases where the leader is a weak symbol named .weak.func.default*). in createRegular()
448 // 1) section definition symbol for a comdat leader; in createUndefined()
469 " without leader and unassociated, discarding"); in handleComdatSelection()
505 DefinedRegular *leader, in handleComdatSelection()
509 // There's already an existing comdat for this symbol: `Leader`. in handleComdatSelection()
514 SectionChunk *leaderChunk = leader in handleComdatSelection()
466 handleComdatSelection(COFFSymbolRef sym,COMDATType & selection,bool & prevailing,DefinedRegular * leader,const llvm::object::coff_aux_section_definition * def) handleComdatSelection() argument
638 DefinedRegular *leader; createDefined() local
[all...]
H A DCallGraphSort.cpp129 // Find the leader of V's belonged cluster (represented as an equivalence
166 // The cluster index is the same as the index of its leader here because in run()
202 for (int leader : sorted) { in run() local
203 for (int i = leader;;) { in run()
206 if (i == leader) in run()
219 for (int leader : sorted) in run() local
220 for (int i = leader;;) { in run()
233 if (i == leader) in run()
H A DInputFiles.h255 // symbol is not (yet) Prevailing and the existing comdat leader set to
256 // Leader, emits a diagnostic if the new symbol and its selection doesn't
259 // the existing leader. In that case, Prevailing is set to true.
262 bool &prevailing, DefinedRegular *leader,
/freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DNewGVN.cpp135 STATISTIC(NumGVNLeaderChanges, "Number of leader changes");
136 STATISTIC(NumGVNSortedLeaderChanges, "Number of sorted leader changes");
138 "Number of avoided sorted leader changes");
264 // Every congruence class has a leader, and the leader is used to symbolize
266 // member of the same congruence class will always be replaced with leader
267 // during symbolization). To simplify symbolization, we keep the leader as a
269 // leader is the member of the value set with the smallest DFS number. Each
279 // leader of the memory congruence class, and the leader o
300 CongruenceClass(unsigned ID,Value * Leader,const Expression * E) CongruenceClass() argument
315 setLeader(Value * Leader) setLeader() argument
326 setStoredValue(Value * Leader) setStoredValue() argument
328 setMemoryLeader(const MemoryAccess * Leader) setMemoryLeader() argument
733 createCongruenceClass(Value * Leader,const Expression * E) createCongruenceClass() argument
3596 auto Leader = lookupOperandLeader(SI->getValueOperand()); convertClassToDFSOrdered() local
3921 Value *Leader = eliminateInstructions() local
4152 Instruction *Leader = cast<Instruction>(EliminationStack.back()); eliminateInstructions() local
[all...]
/freebsd-src/contrib/file/magic/Magdir/
H A Dmarc2111 # leader position 20-21 must be 45
16 # leader starts with 5 digits, followed by codes specific to MARC format
28 # leader position 22-23, should be "00" but is it?
/freebsd-src/lib/libsys/
H A Dsetsid.244 The calling process is the session leader of the new session, is the
45 process group leader of a new process group and has no controlling
65 The calling process is already a process group leader, or the process
H A Dintro.274 ID of the group leader.
85 .It Session leader
88 is known as a session leader.
89 Only a session leader may acquire a terminal as its controlling terminal
92 A session leader with a controlling terminal is a controlling process.
97 A terminal may be acquired by a session leader as its controlling terminal.
119 The process group of a session leader is orphaned by definition.
/freebsd-src/contrib/ntp/ntpsnmpd/
H A Dnetsnmp_daemonize.c167 * - becoming a process/session group leader, and forking a second time so
168 * that process/session group leader can exit.
193 * guarantee that we aren't a process group leader. in netsnmp_daemonize()
212 /* Become a process/session group leader. */ in netsnmp_daemonize()
216 * Fork to let the process/session group leader exit. in netsnmp_daemonize()
/freebsd-src/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp167 // Find the leader of V's belonged cluster (represented as an equivalence
204 // The cluster index is the same as the index of its leader here because in run()
238 for (int leader : sorted) { in run() local
239 for (int i = leader;;) { in run()
242 if (i == leader) in run()
256 for (int leader : sorted) in run() local
257 for (int i = leader;;) { in run()
266 if (i == leader) in run()
/freebsd-src/contrib/llvm-project/lld/MachO/
H A DSectionPriorities.cpp133 // Find the leader of V's belonged cluster (represented as an equivalence
175 // The cluster index is the same as the index of its leader here because in run()
214 for (int leader : sorted) { in run() local
215 for (int i = leader;;) { in run()
218 if (i == leader) in run()
231 for (int leader : sorted) in run() local
232 for (int i = leader;;) { in run()
244 if (i == leader) in run()
/freebsd-src/sbin/init/
H A DNOTES28 session leader's process group is considered to be orphaned;
61 process group leader, so we can only call setsid() once. Note that
62 the controlling terminal acquires the session leader's process
/freebsd-src/share/doc/usd/21.troff/
H A Dm344 \s-1SOH\s+1 (hereafter known as the \fIleader\fR character)
59 (where a tab or leader was found)
62 of the input characters following the tab (or leader) up to the next tab (or leader) or end of line;
86 tab and leader respectively, and
124 The leader repetition character becomes \fIc\fR,
/freebsd-src/lib/libc/gen/
H A Dtcsetsid.346 by the session leader itself.
75 The calling process is not a session leader.
H A Dgetutxent.3124 Identifies the session leader of a logged-in user.
126 Identifies a session leader who has exited.
153 The process identifier of the session leader of the login session.
H A Dtcgetsid.340 function returns the process group ID of the session leader for a
/freebsd-src/include/
H A Dutmpx.h62 #define LOGIN_PROCESS 6 /* The session leader of a logged-in user. */
63 #define DEAD_PROCESS 7 /* A session leader who has exited. */
/freebsd-src/tests/sys/cddl/zfs/tests/txg_integrity/
H A Dtxg_integrity.c44 * For each phase (leader syncs and follower syncs):
46 * Create two threads, a leader and a follower thread.
47 * The leader thread will write each chunk in order. It will post a
49 * writing that chunk. If this is the "leader syncs" phase, it will
59 * 2) Each of the follower's writes overwrote the leader's.
325 * be written by a leader or a follower */
450 leader(void* data) in leader() function
454 /* printf("Leader started\n");*/ in leader()
459 //printf("about to sync in leader\n"); in leader()
462 //printf("about to write chunk in leader\n"); in leader()
[all …]
/freebsd-src/sys/contrib/device-tree/Bindings/regulator/
H A Dqcom,spmi-regulator.txt293 - qcom,saw-leader:
296 Description: SAW controlled gang leader. Will be configured as
342 qcom,saw-leader;
/freebsd-src/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp293 UserValue *leader; ///< Equivalence class leader. member in __anonfeb821960411::UserValue
325 : Variable(var), Fragment(Fragment), dl(std::move(L)), leader(this), in UserValue()
328 /// Get the leader of this value's equivalence class.
330 UserValue *l = leader; in getLeader()
331 while (l != l->leader) in getLeader()
332 l = l->leader; in getLeader()
333 return leader = l; in getLeader()
350 End->leader = L1; in merge()
353 End->leader in merge()
790 UserValue *&Leader = virtRegToEqClass[VirtReg]; mapVirtReg() local
[all...]
/freebsd-src/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/builtinvar/
H A Dtst.psinfo.d47 printf("pid of process group leader = %d\n", curpsinfo->pr_pgid);

12345