Home
last modified time | relevance | path

Searched refs:leaf (Results 1 – 25 of 115) sorted by relevance

12345

/freebsd-11-stable/lib/libc/stdlib/
HDtdelete.c41 if ((*leaf)->balance == 0 || \
42 ((*leaf)->balance < 0 && (*leaf)->rlink->balance == 0)) { \
51 rootp = leaf; \
55 leaf = &(*leaf)->llink; \
60 if ((*leaf)->balance == 0 || \
61 ((*leaf)->balance > 0 && (*leaf)->llink->balance == 0)) { \
62 rootp = leaf; \
66 leaf = &(*leaf)->rlink; \
74 posix_tnode **leaf, *old, **n, *x, *y, *z, *result; in tdelete() local
89 leaf = rootp; in tdelete()
[all …]
HDtsearch.c40 posix_tnode **leaf, *result, *n, *x, *y, *z; in tsearch() local
54 leaf = rootp; in tsearch()
55 while (*leaf != NULL) { in tsearch()
56 if ((*leaf)->balance != 0) { in tsearch()
65 rootp = leaf; in tsearch()
68 cmp = compar(key, (*leaf)->key); in tsearch()
71 leaf = &(*leaf)->llink; in tsearch()
74 leaf = &(*leaf)->rlink; in tsearch()
76 return (*leaf); in tsearch()
81 result = *leaf = malloc(sizeof(**leaf)); in tsearch()
[all …]
HDtwalk.c32 (*action)(root, leaf, level); in trecurse()
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/
Dtraits.hpp116 leaf; typedef
138 leaf,
149 leaf,
160 leaf,
171 leaf,
181 leaf,
193 leaf,
277 leaf; typedef
299 leaf,
312 leaf,
[all …]
Dpat_trie_.hpp149 typedef typename Node_And_It_Traits::leaf leaf; typedef in pb_ds::detail::PB_DS_CLASS_NAME
150 typedef typename Allocator::template rebind<leaf>::other leaf_allocator;
Dcond_dtor_entry_dealtor.hpp75 m_p_nd->~leaf(); in ~cond_dealtor()
Derase_fn_imps.hpp128 p_l->~leaf(); in actual_erase_leaf()
169 static_cast<leaf_pointer>(p_nd)->~leaf(); in clear_imp()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDMetadata.def27 // Handler for leaf nodes in the class hierarchy.
32 // Handler for non-leaf nodes in the class hierarchy.
37 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to
50 // Handler for leaf nodes under MDNode.
55 // Handler for leaf nodes under MDNode.
60 // Handler for non-leaf nodes under MDNode.
65 // Handler for specialized leaf nodes under MDNode.
70 // Handler for specialized non-leaf nodes under MDNode.
/freebsd-11-stable/contrib/ncurses/ncurses/tinfo/
HDaccess.c127 char *leaf; in _nc_access() local
130 leaf = _nc_basename(head); in _nc_access()
131 if (leaf == 0) in _nc_access()
132 leaf = head; in _nc_access()
133 *leaf = '\0'; in _nc_access()
134 if (head == leaf) in _nc_access()
/freebsd-11-stable/contrib/dialog/
HDfselect.c108 char *leaf = strrchr(path, '/'); in leaf_of() local
109 if (leaf != 0) in leaf_of()
110 leaf++; in leaf_of()
112 leaf = path; in leaf_of()
113 return leaf; in leaf_of()
308 char *leaf = leaf_of(input); in show_both_lists() local
310 return show_list(leaf, d_list, keep) | show_list(leaf, f_list, keep); in show_both_lists()
441 char *leaf; in fill_lists() local
472 if ((leaf = strrchr(path, '/')) != 0) { in fill_lists()
473 *++leaf = 0; in fill_lists()
[all …]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
HDtsan_mutex.cpp57 bool leaf[N] = {}; in InitializeMutex() local
64 CHECK(!leaf[i]); in InitializeMutex()
65 leaf[i] = true; in InitializeMutex()
74 CHECK(!leaf[i] || cnt[i] == 0); in InitializeMutex()
78 if (!leaf[i]) in InitializeMutex()
81 if (i == j || leaf[j] || j == MutexTypeInvalid) in InitializeMutex()
/freebsd-11-stable/sys/x86/iommu/
HDintel_idpgtbl.c86 int leaf; /* The last materialized page table member
125 if (lvl != tbl->leaf) { in domain_idmap_nextlvl()
131 if (lvl == tbl->leaf) { in domain_idmap_nextlvl()
169 int leaf, i; in domain_get_idmap_pgtbl() local
171 leaf = 0; /* silence gcc */ in domain_get_idmap_pgtbl()
178 leaf = i; in domain_get_idmap_pgtbl()
195 tbl->leaf == leaf) { in domain_get_idmap_pgtbl()
214 tbl->leaf == leaf) { in domain_get_idmap_pgtbl()
228 tbl->leaf = leaf; in domain_get_idmap_pgtbl()
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
HDIntervalMap.h802 template <typename NodeT> NodeT &leaf() const { in leaf() function
1331 return branched() ? path.leaf<Leaf>().start(path.leafOffset()) : in unsafeStart()
1332 path.leaf<RootLeaf>().start(path.leafOffset()); in unsafeStart()
1338 return branched() ? path.leaf<Leaf>().stop(path.leafOffset()) : in unsafeStop()
1339 path.leaf<RootLeaf>().stop(path.leafOffset()); in unsafeStop()
1345 return branched() ? path.leaf<Leaf>().value(path.leafOffset()) : in unsafeValue()
1346 path.leaf<RootLeaf>().value(path.leafOffset()); in unsafeValue()
1380 return &path.template leaf<Leaf>() == &RHS.path.template leaf<Leaf>();
1483 if (!Traits::stopLess(path.leaf<Leaf>().stop(path.leafSize() - 1), x)) { in treeAdvanceTo()
1484 path.leafOffset() = path.leaf<Leaf>().safeFind(path.leafOffset(), x); in treeAdvanceTo()
[all …]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
HDCodeViewTypes.def1 //===-- CodeViewTypes.def - All CodeView leaf types -------------*- C++ -*-===//
77 // ID leaf records. Subsequent leaf types may be referenced from .debug$S.
196 // ID leaf records. Subsequent leaf types may be referenced from .debug$S.
198 // Numeric leaf types. These are generally contained in other records, and not
/freebsd-11-stable/contrib/libucl/tests/basic/
HD3.res10 leaf = "query -e '%a == 0' '%n-%v'";
11 leaf = "query -e '%a == 0' '%n-%v'";
HD3.in16 leaf: query -e '%a == 0' '%n-%v',
17 leaf: query -e '%a == 0' '%n-%v',
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
HDTypeNodes.td41 /// able to operate on leaf types faster than they can on non-leaf types.
43 /// For example, the function type `void (int)` is not a leaf type because it
46 /// A struct type is a leaf type because its field types are not part of its
/freebsd-11-stable/contrib/libcxxrt/
HDdynamic_cast.cc208 void *leaf = ADD_TO_PTR(const_cast<void *>(sub), header->leaf_offset); in __dynamic_cast() local
209 return header->type->cast_to(leaf, dst); in __dynamic_cast()
/freebsd-11-stable/contrib/bsnmp/gensnmptree/
HDgensnmptree.c164 struct leaf { struct
167 } leaf; member
800 node->u.leaf.func = savetok(); in parse()
801 node->u.leaf.syntax = syntax; in parse()
944 syntax = np->u.leaf.syntax; in gen_node()
995 fprintf(fp, "%s, ", np->u.leaf.func); in gen_node()
1036 sprintf(f, "%s", np->u.leaf.func); in gen_header()
1117 print_syntax(np->u.leaf.syntax); in gen_tree()
1118 printf(" %s%s%s)\n", np->u.leaf.func, in gen_tree()
/freebsd-11-stable/contrib/gcc/config/arm/
HDarm.opt143 Thumb: Generate (non-leaf) stack frames even if not needed
145 mtpcs-leaf-frame
147 Thumb: Generate (leaf) stack frames even if not needed
/freebsd-11-stable/lib/libc/x86/sys/
HD__vdso_gettc.c63 cpuidp(u_int leaf, u_int p[4]) in cpuidp() argument
84 : "0" (leaf)); in cpuidp()
/freebsd-11-stable/sys/contrib/libfdt/
HDfdt_ro.c252 const char *leaf; in fdt_get_name() local
253 leaf = strrchr(nameptr, '/'); in fdt_get_name()
254 if (leaf == NULL) { in fdt_get_name()
258 nameptr = leaf+1; in fdt_get_name()
/freebsd-11-stable/sys/conf/
HDMakefile.arm6431 CFLAGS += -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
HDMakefile.amd6437 CFLAGS+= -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
/freebsd-11-stable/contrib/wpa/src/utils/
HDxml-utils.c210 static char * add_path(const char *prev, const char *leaf) in add_path() argument
218 len = os_strlen(prev) + 1 + os_strlen(leaf) + 1; in add_path()
221 os_snprintf(new_uri, len, "%s/%s", prev, leaf); in add_path()

12345