Home
last modified time | relevance | path

Searched refs:leader (Results 1 – 25 of 51) sorted by relevance

123

/third_party/mesa3d/src/compiler/glsl/
Dir_basic_block.cpp56 ir_instruction *leader = NULL; in call_for_basic_blocks() local
64 if (!leader) in call_for_basic_blocks()
65 leader = ir; in call_for_basic_blocks()
68 callback(leader, ir, data); in call_for_basic_blocks()
69 leader = NULL; in call_for_basic_blocks()
74 callback(leader, ir, data); in call_for_basic_blocks()
75 leader = NULL; in call_for_basic_blocks()
78 callback(leader, ir, data); in call_for_basic_blocks()
79 leader = NULL; in call_for_basic_blocks()
96 if (leader) { in call_for_basic_blocks()
[all …]
/third_party/libwebsockets/lib/core-net/
DREADME.md14 and endpoint basically queue on a leader and happen sequentially.
22 The initial wsi to start the network connection becomes the "leader" that
27 Other client wsi being created who find there is already a leader on the active
29 to the leader's wsi->dll2_cli_txn_queue_owner to "queue" on the leader.
34 When the "leader" wsi connects, it performs its client transaction as normal,
38 like the SSL *, the socket fd, and any remaining queue from the original leader
39 to the head of the list, which replaces the old leader as the "active client
/third_party/python/Lib/email/
D_header_value_parser.py1389 leader, value = get_cfws(value)
1391 leader = None
1402 if leader is not None:
1403 token[:0] = [leader]
1449 leader = None
1451 leader, value = get_cfws(value)
1464 if leader is not None:
1465 token[:0] = [leader]
1603 leader = None
1605 leader, value = get_cfws(value)
[all …]
/third_party/python/Tools/peg_generator/pegen/
Dparser_generator.py184 leader = min(leaders) # Pick an arbitrary leader from the candidates.
185 rules[leader].leader = True
190 rules[name].leader = True
D__main__.py154 {name for name in scc if grammar.rules[name].leader},
Dpython_generator.py164 if node.leader:
Dc_generator.py642 if node.left_recursive and node.leader:
648 if node.left_recursive and node.leader:
Dgrammar.py79 self.leader = False
/third_party/boost/libs/graph_parallel/test/
Dhohberg_biconnected_components_test.cpp74 typename graph_traits<Graph>::vertex_descriptor leader = vertex(i, g); in test_small_hohberg_biconnected_components() local
76 hohberg_biconnected_components(g, get(edge_color, g), &leader, in test_small_hohberg_biconnected_components()
77 &leader + 1); in test_small_hohberg_biconnected_components()
/third_party/mesa3d/src/compiler/nir/
Dnir_lower_io_to_vector.c321 nir_deref_instr *leader) in build_array_deref_of_new_var() argument
323 if (leader->deref_type == nir_deref_type_var) in build_array_deref_of_new_var()
327 build_array_deref_of_new_var(b, new_var, nir_deref_instr_parent(leader)); in build_array_deref_of_new_var()
329 return nir_build_deref_follower(b, parent, leader); in build_array_deref_of_new_var()
359 nir_deref_instr *leader, unsigned base) in build_array_deref_of_new_var_flat() argument
366 nir_deref_path_init(&path, leader, NULL); in build_array_deref_of_new_var_flat()
382 build_array_index(b, leader, nir_imm_int(b, base), vs_in, per_vertex)); in build_array_deref_of_new_var_flat()
Dnir_builder.h1448 nir_deref_instr *leader) in nir_build_deref_follower() argument
1451 assert(leader->parent.is_ssa); in nir_build_deref_follower()
1452 if (leader->parent.ssa == &parent->dest.ssa) in nir_build_deref_follower()
1453 return leader; in nir_build_deref_follower()
1455 UNUSED nir_deref_instr *leader_parent = nir_src_as_deref(leader->parent); in nir_build_deref_follower()
1457 switch (leader->deref_type) { in nir_build_deref_follower()
1466 (leader->deref_type == nir_deref_type_array && in nir_build_deref_follower()
1471 if (leader->deref_type == nir_deref_type_array) { in nir_build_deref_follower()
1472 assert(leader->arr.index.is_ssa); in nir_build_deref_follower()
1473 nir_ssa_def *index = nir_i2i(b, leader->arr.index.ssa, in nir_build_deref_follower()
[all …]
/third_party/flutter/flutter/packages/flutter/lib/src/rendering/
Dcustom_layout.dart51 /// (the follower) to be the same size as another (the leader):
58 /// leader,
67 /// if (hasChild(_Slot.leader)) {
68 /// leaderSize = layoutChild(_Slot.leader, BoxConstraints.loose(size));
69 /// positionChild(_Slot.leader, Offset.zero);
85 /// The delegate gives the leader widget loose constraints, which means the
91 /// match the size of the leader widget. The delegate then places the follower
94 /// The leader and follower widget will paint in the order they appear in the
Dlayer.dart1794 LeaderLayer get leader => _leader;
1807 /// Creates a leader layer.
1844 assert(link.leader == null);
1851 assert(link.leader == this);
1860 /// catch cases where the follower layer ends up before the leader layer, but
1911 /// from the leader layer, for example if the child is to follow the linked
1967 /// Offset from the origin of the leader layer to the origin of the child
2000 if (link.leader == null) {
2009 if (link.leader == null) {
2054 if (link.leader == null)
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DLiveDebugVariables.cpp162 UserValue *leader; ///< Equivalence class leader. member in __anon1de31ad00211::UserValue
191 : Variable(var), Expression(expr), dl(std::move(L)), leader(this), in UserValue()
196 UserValue *l = leader; in getLeader()
197 while (l != l->leader) in getLeader()
198 l = l->leader; in getLeader()
199 return leader = l; in getLeader()
224 End->leader = L1; in merge()
227 End->leader = L1; in merge()
/third_party/boost/boost/graph/distributed/
Dhohberg_biconnected_components.hpp927 vertex_descriptor leader = *first; in hohberg_biconnected_components() local
928 if (process_id(pg) == get(owner, leader)) in hohberg_biconnected_components()
929 vertex_processor[leader].initialize_leader(leader, g); in hohberg_biconnected_components()
/third_party/boost/libs/sort/doc/
Dhtml4_symbols.qbk74 [template hellip[]'''&#x2026;'''] [/ � horizontal ellipsis = three dot leader]
160 [template dot[]'''&#x2024;'''] [/ dot leader]
161 [template dot2[]'''&#x2025;'''] [/ ? dots leader]
/third_party/flutter/flutter/examples/flutter_gallery/lib/demo/animation/
Dhome.dart485 …bool _handlePageNotification(ScrollNotification notification, PageController leader, PageControlle…
487 selectedIndex.value = leader.page;
488 if (follower.page != leader.page)
489 … follower.position.jumpToWithoutSettling(leader.position.pixels); // ignore: deprecated_member_use
/third_party/mindspore/mindspore/ccsrc/ps/core/protos/
Dfl.proto171 // The rank of the server which sends this synchronizing iteration request to the leader server.
/third_party/boost/libs/multiprecision/doc/
Dhtml4_symbols.qbk77 [template hellip[]'''&#x2026;'''] [/ � horizontal ellipsis = three dot leader]
175 [template dot[]'''&#x2024;'''] [/ dot leader]
176 [template dot2[]'''&#x2025;'''] [/ ? dots leader]
/third_party/boost/libs/math/doc/
Dhtml4_symbols.qbk77 [template hellip[]'''&#x2026;'''] [/ � horizontal ellipsis = three dot leader]
175 [template dot[]'''&#x2024;'''] [/ dot leader]
176 [template dot2[]'''&#x2025;'''] [/ ? dots leader]
/third_party/mindspore/mindspore/_extends/graph_kernel/model/
Dmodel.py306 def __init__(self, leader): argument
307 self.members = [leader]
/third_party/mksh/
DTaC-mksh.txt242 leader sees fit, so long as it pertains to MirBSD in some
243 way and the leader gives credit for the original daemon to
/third_party/ltp/lib/
DREADME.md73 resets signal handlers and sets its pid to be a process group leader so that we
/third_party/libuv/docs/src/
Dprocess.rst66 * group leader, and will effectively enable the child to keep running after
/third_party/flutter/engine/flutter/tools/licenses/lib/
Dmain.dart235 _RepositoryLicenseFileWithLeader(_RepositoryDirectory parent, fs.TextFile io, RegExp leader)
236 : super(parent, io, _parseLicense(io, leader));
241 static License _parseLicense(fs.TextFile io, RegExp leader) {
243 final Match match = leader.firstMatch(body);
245 throw 'failed to strip leader from $io\nleader: /$leader/\nbody:\n---\n$body\n---';

123