Home
last modified time | relevance | path

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

12345

/NextBSD/lib/libc/stdlib/
HDtdelete.c41 if ((*leaf)->balance == 0 || \
42 ((*leaf)->balance < 0 && (*leaf)->rlink->balance == 0)) { \
51 base = leaf; \
55 leaf = &(*leaf)->llink; \
60 if ((*leaf)->balance == 0 || \
61 ((*leaf)->balance > 0 && (*leaf)->llink->balance == 0)) { \
62 base = leaf; \
65 result = &(*leaf)->key; \
67 leaf = &(*leaf)->rlink; \
75 node_t *root, **base, **leaf, *old, **n, *x, *y, *z; in tdelete() local
[all …]
HDtsearch.c40 node_t *root, **base, **leaf, *result, *n, *x, *y, *z; in tsearch() local
56 leaf = &root; in tsearch()
57 while (*leaf != NULL) { in tsearch()
58 if ((*leaf)->balance != 0) { in tsearch()
67 base = leaf; in tsearch()
70 cmp = compar(key, (*leaf)->key); in tsearch()
73 leaf = &(*leaf)->llink; in tsearch()
76 leaf = &(*leaf)->rlink; in tsearch()
78 return (&(*leaf)->key); in tsearch()
83 result = *leaf = malloc(sizeof(**leaf)); in tsearch()
[all …]
HDtwalk.c35 (*action)(root, leaf, level); in trecurse()
/NextBSD/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()
/NextBSD/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()
/NextBSD/contrib/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 leaf nodes under MDNode.
42 // Handler for non-leaf nodes under MDNode.
47 // Handler for specialized leaf nodes under MDNode.
52 // Handler for specialized non-leaf nodes under MDNode.
/NextBSD/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 …]
/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_mutex.cc55 bool leaf[N] = {}; in InitializeMutex() local
62 CHECK(!leaf[i]); in InitializeMutex()
63 leaf[i] = true; in InitializeMutex()
72 CHECK(!leaf[i] || cnt[i] == 0); in InitializeMutex()
76 if (!leaf[i]) in InitializeMutex()
79 if (i == j || leaf[j] || j == MutexTypeInvalid) in InitializeMutex()
/NextBSD/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()
/NextBSD/contrib/llvm/include/llvm/ADT/
HDIntervalMap.h800 template <typename NodeT> NodeT &leaf() const { in leaf() function
1319 return branched() ? path.leaf<Leaf>().start(path.leafOffset()) : in unsafeStart()
1320 path.leaf<RootLeaf>().start(path.leafOffset()); in unsafeStart()
1326 return branched() ? path.leaf<Leaf>().stop(path.leafOffset()) : in unsafeStop()
1327 path.leaf<RootLeaf>().stop(path.leafOffset()); in unsafeStop()
1333 return branched() ? path.leaf<Leaf>().value(path.leafOffset()) : in unsafeValue()
1334 path.leaf<RootLeaf>().value(path.leafOffset()); in unsafeValue()
1368 return &path.template leaf<Leaf>() == &RHS.path.template leaf<Leaf>();
1472 if (!Traits::stopLess(path.leaf<Leaf>().stop(path.leafSize() - 1), x)) { in treeAdvanceTo()
1473 path.leafOffset() = path.leaf<Leaf>().safeFind(path.leafOffset(), x); in treeAdvanceTo()
[all …]
/NextBSD/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',
/NextBSD/lib/libdispatch/src/
HDdata_internal.h71 bool leaf; member
82 #define _dispatch_data_leaf(d) ((d)->leaf)
/NextBSD/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()
/NextBSD/contrib/bsnmp/gensnmptree/
HDgensnmptree.c164 struct leaf { struct
167 } leaf; member
802 node->u.leaf.func = savetok(); in parse()
803 node->u.leaf.syntax = syntax; in parse()
946 syntax = np->u.leaf.syntax; in gen_node()
997 fprintf(fp, "%s, ", np->u.leaf.func); in gen_node()
1038 sprintf(f, "%s", np->u.leaf.func); in gen_header()
1119 print_syntax(np->u.leaf.syntax); in gen_tree()
1120 printf(" %s%s%s)\n", np->u.leaf.func, in gen_tree()
/NextBSD/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
/NextBSD/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
/NextBSD/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()
/NextBSD/include/
HDsearch.h33 leaf enumerator
/NextBSD/contrib/ipfilter/rules/
HDserver5 # leaf subnet. We're not concerned about filtering individual services
/NextBSD/contrib/binutils/gas/
HDcgen.c723 (field ? field->val.leaf->name : "??")); in queue_fixup_recursively()
728 rightshift -= field->val.leaf->length; in queue_fixup_recursively()
902 start = fixP->fx_cgen.field->val.leaf->start;
903 length = fixP->fx_cgen.field->val.leaf->length;

12345