| /NextBSD/lib/libc/stdlib/ |
| HD | tdelete.c | 41 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 …]
|
| HD | tsearch.c | 40 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 …]
|
| HD | twalk.c | 35 (*action)(root, leaf, level); in trecurse()
|
| /NextBSD/contrib/libstdc++/include/ext/pb_ds/detail/pat_trie_/ |
| D | traits.hpp | 116 leaf; typedef 138 leaf, 149 leaf, 160 leaf, 171 leaf, 181 leaf, 193 leaf, 277 leaf; typedef 299 leaf, 312 leaf, [all …]
|
| D | pat_trie_.hpp | 149 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;
|
| D | cond_dtor_entry_dealtor.hpp | 75 m_p_nd->~leaf(); in ~cond_dealtor()
|
| D | erase_fn_imps.hpp | 128 p_l->~leaf(); in actual_erase_leaf() 169 static_cast<leaf_pointer>(p_nd)->~leaf(); in clear_imp()
|
| /NextBSD/contrib/ncurses/ncurses/tinfo/ |
| HD | access.c | 127 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/ |
| HD | Metadata.def | 27 // 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/ |
| HD | fselect.c | 108 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/ |
| HD | tsan_mutex.cc | 55 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/ |
| HD | intel_idpgtbl.c | 86 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/ |
| HD | IntervalMap.h | 800 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/ |
| HD | 3.res | 10 leaf = "query -e '%a == 0' '%n-%v'"; 11 leaf = "query -e '%a == 0' '%n-%v'";
|
| HD | 3.in | 16 leaf: query -e '%a == 0' '%n-%v', 17 leaf: query -e '%a == 0' '%n-%v',
|
| /NextBSD/lib/libdispatch/src/ |
| HD | data_internal.h | 71 bool leaf; member 82 #define _dispatch_data_leaf(d) ((d)->leaf)
|
| /NextBSD/contrib/libcxxrt/ |
| HD | dynamic_cast.cc | 208 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/ |
| HD | gensnmptree.c | 164 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/ |
| HD | arm.opt | 143 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/ |
| HD | Makefile.arm64 | 31 CFLAGS += -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
| HD | Makefile.amd64 | 37 CFLAGS+= -fno-omit-frame-pointer -mno-omit-leaf-frame-pointer
|
| /NextBSD/contrib/wpa/src/utils/ |
| HD | xml-utils.c | 210 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/ |
| HD | search.h | 33 leaf enumerator
|
| /NextBSD/contrib/ipfilter/rules/ |
| HD | server | 5 # leaf subnet. We're not concerned about filtering individual services
|
| /NextBSD/contrib/binutils/gas/ |
| HD | cgen.c | 723 (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;
|