/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | IntervalMap.cpp | 22 path.insert(path.begin() + 1, Entry(subtree(0), Offsets.second)); in replaceRoot() 40 NodeRef NR = path[l].subtree(path[l].offset - 1); in getLeftSibling() 44 NR = NR.subtree(NR.size() - 1); in getLeftSibling() 65 NodeRef NR = subtree(l); in moveLeft() 70 NR = NR.subtree(NR.size() - 1); in moveLeft() 90 NodeRef NR = path[l].subtree(path[l].offset + 1); in getRightSibling() 94 NR = NR.subtree(0); in getRightSibling() 110 NodeRef NR = subtree(l); in moveRight() 114 NR = NR.subtree(0); in moveRight()
|
/freebsd/usr.sbin/makefs/ |
H A D | makefs.c | 101 const char *subtree; in main() local 305 subtree = argv[1]; in main() 307 root = walk_dir(subtree, ".", NULL, NULL); in main() 311 subtree = "."; in main() 334 apply_specfile(specfile, subtree, root, fsoptions.onlyspec); in main() 339 printf("\nparent: %s\n", subtree); in main() 346 fstype->make_fs(argv[0], subtree, root, &fsoptions); in main()
|
/freebsd/contrib/jemalloc/src/ |
H A D | rtree.c | 63 rtree_delete_subtree(tsdn_t *tsdn, rtree_t *rtree, rtree_node_elm_t *subtree, in rtree_delete_subtree() argument 69 (rtree_node_elm_t *)atomic_load_p(&subtree[i].child, in rtree_delete_subtree() 79 (rtree_leaf_elm_t *)atomic_load_p(&subtree[i].child, in rtree_delete_subtree() 87 if (subtree != rtree->root) { in rtree_delete_subtree() 88 rtree_node_dalloc(tsdn, rtree, subtree); in rtree_delete_subtree()
|
/freebsd/contrib/bsnmp/snmp_vacm/ |
H A D | vacm_snmp.c | 811 oid->subs[sub] = view->subtree.len; in vacm_append_viewindex() 813 asn_append_oid(oid, &view->subtree); in vacm_append_viewindex() 820 struct asn_oid subtree; in vacm_get_view() local 823 if (vacm_view_index_decode(oid, sub, vname, &subtree) < 0) in vacm_get_view() 828 asn_compare_oid(&subtree, &view->subtree)== 0) in vacm_get_view() 838 struct asn_oid subtree; in vacm_get_next_view() local 844 if (vacm_view_index_decode(oid, sub, vname, &subtree) < 0) in vacm_get_next_view() 849 asn_compare_oid(&subtree, &view->subtree)== 0) in vacm_get_next_view() 1011 asn_oid2str_r(&view->subtree, oidbuf), view->exclude? in vacm_dump()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
H A D | IntervalMap.h | 520 /// subtree - Access the i'th subtree reference in a branch node. 523 NodeRef &subtree(unsigned i) const { in subtree() function 689 // The key array in a branch node holds the rightmost stop key of each subtree. 693 // It is unusual for a branch node to only have one subtree, but it can happen 706 const NodeRef &subtree(unsigned i) const { return this->first[i]; } in subtree() function 709 NodeRef &subtree(unsigned i) { return this->first[i]; } in subtree() function 711 /// findFrom - Find the first subtree after i that may contain x. 716 /// This is the first subtree that can possibly contain x. 725 /// safeFind - Find a subtree tha 787 NodeRef &subtree(unsigned i) const { subtree() function 824 NodeRef &subtree(unsigned Level) const { subtree() function [all...] |
/freebsd/share/snmp/mibs/ |
H A D | FREEBSD-MIB.txt | 24 FreeBSD Project enterprise MIB subtree." 66 a subtree. Grab the next sequential oid in the list.
|
/freebsd/kerberos5/ |
H A D | README | 1 This subtree is world-exportable, as it does not contain any
|
/freebsd/share/examples/kld/dyn_sysctl/ |
H A D | README | 2 reference counting. It also contains example of attaching a subtree to the
|
/freebsd/contrib/bsnmp/ |
H A D | TODO | 3 a private subtree for transports:
|
/freebsd/crypto/openssh/ |
H A D | xmss_fast.h | 16 unsigned long long subtree; member
|
H A D | FREEBSD-upgrade | 61 $ git subtree merge -P crypto/openssh vendor/openssh
|
/freebsd/sys/contrib/openzfs/module/zstd/ |
H A D | README.md | 5 This subtree contains the ZSTD library used in ZFS. It is heavily cut-down by
|
/freebsd/contrib/bsnmp/snmpd/ |
H A D | BEGEMOT-MIB.txt | 56 "The root of the Begemot subtree of the fokus tree."
|
H A D | main.c | 469 suboid = asn_is_suboid(&view->subtree, &pdu->bindings[i].var); in snmp_pdu_auth_access() 3015 return (asn_compare_oid(&v1->subtree, &v2->subtree)); in vacm_compare_view() 3033 asn_append_oid(&view->subtree, oid); in vacm_new_view()
|
H A D | snmpmod.h | 470 struct asn_oid subtree; /* key */ member
|
/freebsd/contrib/one-true-awk/ |
H A D | FREEBSD-upgrade | 41 % git subtree merge -P contrib/one-true-awk vendor/one-true-awk
|
/freebsd/usr.sbin/bsnmpd/modules/snmp_bridge/ |
H A D | BRIDGE-MIB.txt | 173 -- the dot1dBase subtree 175 -- Implementation of the dot1dBase subtree is mandatory for all 327 -- the dot1dStp subtree 329 -- Implementation of the dot1dStp subtree is optional. It is 755 -- the dot1dTp subtree 757 -- Implementation of the dot1dTp subtree is optional. It is 760 -- this subtree. 1007 -- Implementation of this subtree is optional.
|
/freebsd/contrib/ntp/sntp/m4/ |
H A D | ntp_cacheversion.m4 | 12 # The top-level configure.ac in a subtree using NTP_CACHEVERSION
|
/freebsd/crypto/openssl/ |
H A D | FREEBSD-upgrade | 64 $ git subtree merge -P crypto/openssl vendor/openssl-X.Y
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | __tree | 113 // Determines if the subtree rooted at __x is a proper red black subtree. If 114 // __x is a proper subtree, returns the black height (null counts as 1). If 115 // __x is an improper subtree, returns 0. 139 return 0; // invalid left subtree 141 return 0; // invalid or different height right subtree 234 // Effects: Makes __x->__right_ the subtree root with __x as its left child 253 // Effects: Makes __x->__left_ the subtree root with __x as its right child
|
/freebsd/crypto/openssl/doc/man3/ |
H A D | X509_STORE_CTX_get_error.pod | 337 =item B<X509_V_ERR_PERMITTED_VIOLATION: permitted subtree violation> 341 =item B<X509_V_ERR_EXCLUDED_VIOLATION: excluded subtree violation>
|
/freebsd/usr.sbin/bsnmpd/bsnmpd/ |
H A D | snmpd.config | 242 # The OID of the .iso.org.dod.internet subtree
|
/freebsd/sys/dev/acpica/ |
H A D | acpi_if.m | 164 # Rescan a subtree and optionally reattach devices to handles. Users
|
/freebsd/ |
H A D | MAINTAINERS | 32 makes a commit to the specified subtree.
|
/freebsd/contrib/ofed/opensm/opensm/ |
H A D | osm_ucast_ftree.c | 1372 IN unsigned int subtree) in fabric_assign_first_tuple() argument 1388 new_tuple[p_ftree->leaf_switch_rank] = subtree; in fabric_assign_first_tuple() 1644 unsigned int subtree = 0; in fabric_make_indexing() local 1668 fabric_assign_first_tuple(p_ftree, p_sw, subtree++); in fabric_make_indexing()
|