Home
last modified time | relevance | path

Searched full:leaves (Results 1 – 25 of 618) sorted by relevance

12345678910>>...25

/freebsd/usr.bin/sort/
H A Dradixsort.c63 struct sort_list_item **leaves; member
249 sl->leaves = sort_realloc(sl->leaves, in add_leaf()
252 sl->leaves[sl->leaves_num - 1] = item; in add_leaf()
303 if (sl->leaves) in free_sort_level()
304 sort_free(sl->leaves); in free_sort_level()
379 sl->leaves = sl->tosort; in run_sort_level_next()
382 sl->leaves = sort_realloc(sl->leaves, in run_sort_level_next()
391 if (mergesort(sl->leaves, sl->leaves_num, in run_sort_level_next()
397 DEFAULT_SORT_FUNC_RADIXSORT(sl->leaves, sl->leaves_num, in run_sort_level_next()
402 sl->leaves, sl->leaves_num * in run_sort_level_next()
[all …]
/freebsd/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchTree.cpp
H A DGIMatchTree.h
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DDirectiveEmitter.cpp522 std::vector<Record *> Leaves = Dir.getLeafConstructs(); in EmitLeafTable() local
527 List[1] = Leaves.size(); // The number of leaves to follow. in EmitLeafTable()
531 static_cast<size_t>(I) < Leaves.size() ? DirId.at(Leaves[I]) : -1; in EmitLeafTable()
584 auto &Leaves = LeafTable[Ordering[I]]; in EmitLeafTable() local
585 OS << " {" << GetDirectiveName(DirLang, Directives[Leaves[0]]); in EmitLeafTable()
586 OS << ", static_cast<" << DirectiveType << ">(" << Leaves[1] << "),"; in EmitLeafTable()
587 for (size_t I = 2, E = Leaves.size(); I != E; ++I) { in EmitLeafTable()
588 int Idx = Leaves[I]; in EmitLeafTable()
590 OS << ' ' << GetDirectiveName(DirLang, Directives[Leaves[I]]) << ','; in EmitLeafTable()
697 std::vector<Record *> leaves = D.getLeafConstructs(); in GenerateGetDirectiveAssociation() local
[all …]
/freebsd/contrib/ofed/librdmacm/man/
H A Drdma_leave_multicast.34 rdma_leave_multicast \- Leaves a multicast group.
17 Leaves a multicast group and detaches an associated QP from the group.
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DOpenMPKinds.cpp622 ArrayRef<Directive> Leaves = getLeafConstructs(DKind); in isOpenMPNestingTeamsDirective() local
623 return !Leaves.empty() && Leaves.front() == OMPD_teams; in isOpenMPNestingTeamsDirective()
645 ArrayRef<Directive> Leaves = getLeafConstructs(Kind); in isOpenMPNestingDistributeDirective() local
646 return !Leaves.empty() && Leaves.front() == OMPD_distribute; in isOpenMPNestingDistributeDirective()
657 ArrayRef<Directive> Leaves = getLeafConstructs(Kind); in isOpenMPGenericLoopDirective() local
658 return !Leaves.empty() && Leaves.back() == OMPD_loop; in isOpenMPGenericLoopDirective()
/freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_create/
H A Dzfs_create_nomount.ksh41 log_assert "zfs create -u leaves the new file system unmounted"
51 log_pass "zfs create -u leaves the new file system unmounted"
/freebsd/sys/contrib/xen/arch-x86/
H A Dcpuid.h34 * For compatibility with other hypervisor interfaces, the Xen cpuid leaves
39 * leaves will start at 0x40000100
47 * EAX: Largest Xen-information leaf. All leaves up to an including @EAX
/freebsd/contrib/llvm-project/compiler-rt/lib/orc/tests/unit/
H A Dinterval_set_test.cpp83 // Check that removal of a trailing subrange succeeds, but leaves the in TEST()
96 // Check that removal of a leading subrange succeeds, but leaves the in TEST()
109 // Check that removal of an interior subrange leaves both the leading and in TEST()
H A Dinterval_map_test.cpp150 // Check that removal of a trailing subrange succeeds, but leaves the in TEST()
163 // Check that removal of a leading subrange succeeds, but leaves the in TEST()
176 // Check that removal of an interior subrange leaves both the leading and in TEST()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DSuffixTree.h10 // Suffix trees represent the suffixes of their input strings in their leaves.
17 // of length N, there are exactly N leaves in the tree. This structure allows
116 /// Set the suffix indices of the leaves to the start indices of their
138 /// of these leaf nodes in the vector matches the order of the leaves in the
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dmmp.c119 * ub_mmp_delay >= (zfs_multihost_interval / leaves), so if the other host
489 "leaves, pool '%s' gethrtime %llu leaf %llu", in mmp_write_uberblock()
579 int leaves = MAX(vdev_count_leaves(spa), 1); in mmp_thread() local
611 skip_wait += leaves; in mmp_thread()
615 next_time = gethrtime() + mmp_interval / leaves; in mmp_thread()
622 "skip_wait %d leaves %d next_time %llu", in mmp_thread()
627 skip_wait, leaves, (u_longlong_t)next_time); in mmp_thread()
688 leaves; in mmp_thread()
/freebsd/contrib/ncurses/man/
H A Dmitem_opts.3x52 The function \fBitem_opts_on\fP turns on the given option bits, and leaves
55 The function \fBitem_opts_off\fP turns off the given option bits, and leaves
H A Dform_opts.3x52 The function \fBform_opts_on\fP turns on the given option bits, and leaves
55 The function \fBform_opts_off\fP turns off the given option bits, and leaves
H A Dmenu_opts.3x52 The function \fBmenu_opts_on\fP turns on the given option bits, and leaves
55 The function \fBmenu_opts_off\fP turns off the given option bits, and leaves
H A Dform_field_opts.3x52 The function \fBfield_opts_on\fP turns on the given option bits, and leaves
55 The function \fBfield_opts_off\fP turns off the given option bits, and leaves
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PartialReduction.cpp415 // found a loop and it is safe to step through this Add to find more leaves.
431 // Collect all the leaves of the tree of adds that feeds into the horizontal
435 static void collectLeaves(Value *Root, SmallVectorImpl<Instruction *> &Leaves) { in collectLeaves() argument
495 Leaves.push_back(I); in collectLeaves()
527 SmallVector<Instruction *, 8> Leaves; in runOnFunction() local
528 collectLeaves(Root, Leaves); in runOnFunction()
530 for (Instruction *I : Leaves) { in runOnFunction()
/freebsd/sys/contrib/device-tree/Bindings/pci/
H A Dpci.txt59 If firmware leaves the ARI Forwarding Enable bit set in the bridge
62 recommends that firmware only leaves ARI enabled when it knows that the
/freebsd/crypto/openssl/providers/common/der/
H A Doids_to_c.pm105 my %leaves = map { $_ => 1 } registered_oid_leaves;
106 foreach (grep { defined $leaves{$_->[0]} } @OID_names) {
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAG.cpp2093 LeafPrioQueue Leaves(NOpcode); in balanceSubTree() local
2116 // Flatten the subtree into an ordered list of leaves; at the same time in balanceSubTree()
2165 Leaves.push(WeightedLeaf(Child, Weight, InsertionOrder++)); in balanceSubTree()
2176 Leaves.push(WeightedLeaf(Child, Weight, InsertionOrder++)); in balanceSubTree()
2228 Leaves.push(WeightedLeaf(New, Weight, Mul1.InsertionOrder)); in balanceSubTree()
2232 Leaves.push(Mul1); in balanceSubTree()
2234 Leaves.push(Mul2); in balanceSubTree()
2242 if (NOpcode == ISD::ADD && GA.Value.getNode() && Leaves.hasConst() && in balanceSubTree()
2246 ConstantSDNode *Offset = cast<ConstantSDNode>(Leaves.top().Value); in balanceSubTree()
2260 GA.Weight += Leaves.top().Weight; in balanceSubTree()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/Syntax/
H A DSyntax.td12 // - Leaves, owning exactly one token. (syntax::Leaf)
17 // The concrete node defines the element type, delimiters are always leaves.
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DTypeNodes.td49 /// Nodes like `TypedefType` which are syntactically leaves but can desugar
50 /// to types that may not be leaves should not declare this.
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsc7280-qcard.dtsi493 * Technically this i2c bus actually leaves the Qcard, but it leaves directly
510 * direction or leaves the pin fully unpowered.
607 * direction or leaves the pin fully unpowered.
/freebsd/share/man/man9/
H A Dalq.9269 This function leaves
328 This function leaves
/freebsd/contrib/bmake/unit-tests/
H A Ddeptgt-end-fail-all.mk5 # which leaves room for interpretation.

12345678910>>...25