Home
last modified time | relevance | path

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

123456

/freebsd/crypto/openssl/ssl/quic/
H A Dquic_obj_local.h24 * choose to introduce QDSOs. There are also roles such as Port Leader and Event
25 * Leader which can be assumed by these different types under different
27 * Leader is not a static function of its type and these roles can 'float'
33 * dynamically assume leader roles. It can therefore be seen as an extension of
53 * E: Always an event leader if it exists.
54 * e: Potentially an event leader (namely if it is the root APL object in a
57 * P: Always a port leader if it exists.
58 * p: Potentially a port leader (namely if there is no port leader above it).
60 * C: Always a connection leader.
82 /* invariant: != NULL iff this is a port leader or subsidiary object */
[all …]
/freebsd/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/crypto/openssl/doc/designs/quic-design/server/
H A Dquic-server-api.md372 - **Port Leader:** A Port Leader is the APL object which caused the creation
376 In the simple client API, the QCSO is the port leader.
377 In a client using a QLSO, the QLSO is the port leader.
378 In a server, the QLSO is the port leader.
380 - **Event Leader:** An Event Leader is the APL object which handles event
382 equivalent to a call to SSL_handle_events() on the Event Leader, which handles
385 The event leader is the highest-level APL object in a QUIC APL object
388 In the simple client API, the QCSO is the event leader.
389 In a client using a QLSO, the QLSO is the event leader.
390 In a server, the QLSO is the event leader.
[all …]
/freebsd/contrib/llvm-project/lld/COFF/
H A DInputFiles.cpp215 // walk the object file's symbol table, once we visit either a leader symbol or
216 // an associative section definition together with the parent comdat's leader,
305 // relocations, in .rdata, leader symbol name matches the MSVC name mangling in readSection()
371 // Use the suffix from the .text$<func> instead of the leader symbol in recordPrevailingSymbolForMingw()
373 // cases where the leader is a weak symbol named .weak.func.default*). in recordPrevailingSymbolForMingw()
448 // 1) section definition symbol for a comdat leader; in initializeSymbols()
469 " without leader and unassociated, discarding"); in initializeSymbols()
505 DefinedRegular *leader, in handleComdatSelection() argument
509 // There's already an existing comdat for this symbol: `Leader`. in handleComdatSelection()
514 SectionChunk *leaderChunk = leader->getChunk(); in handleComdatSelection()
[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/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/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/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 of memory congruence
300 CongruenceClass(unsigned ID, Value *Leader, const Expression *E) in CongruenceClass() argument
301 : ID(ID), RepLeader(Leader), DefiningExpr(E) {} in CongruenceClass()
[all …]
/freebsd/contrib/llvm-project/lld/ELF/
H A DCallGraphSort.cpp167 // Find the leader of V's belonged cluster (represented as an equivalence in mergeClusters()
204 // The cluster index is the same as the index of its leader here because in run()
238 for (int leader : sorted) { in run()
239 for (int i = leader;;) { in run()
242 if (i == leader) in run()
256 for (int leader : sorted) in run()
257 for (int i = leader;;) { in run()
266 if (i == leader)
227 for (int leader : sorted) { run() local
245 for (int leader : sorted) run() local
/freebsd/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/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/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/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/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/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/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.
/freebsd/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/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/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;
H A Dqcom,spmi-regulator.yaml104 qcom,saw-leader:
106 SAW controlled gang leader. Will be configured as SAW regulator.
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DLiveDebugVariables.cpp293 UserValue *leader; ///< Equivalence class leader. member in __anon093131440411::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 = L1; in merge()
577 /// Map virtual register to eq class leader.
[all …]

123456