Searched refs:ptree (Results 1 - 11 of 11) sorted by relevance

/freebsd-10.1-release/sys/sys/
H A D_pctrie.h44 pctrie_is_empty(struct pctrie *ptree) argument
47 return (ptree->pt_root == 0);
H A Dpctrie.h65 name##_PCTRIE_INSERT(struct pctrie *ptree, struct type *ptr) \
68 return pctrie_insert(ptree, name##_PCTRIE_PTR2VAL(ptr), \
73 name##_PCTRIE_LOOKUP(struct pctrie *ptree, uint64_t key) \
76 return name##_PCTRIE_VAL2PTR(pctrie_lookup(ptree, key)); \
80 name##_PCTRIE_LOOKUP_LE(struct pctrie *ptree, uint64_t key) \
83 return name##_PCTRIE_VAL2PTR(pctrie_lookup_le(ptree, key)); \
87 name##_PCTRIE_LOOKUP_GE(struct pctrie *ptree, uint64_t key) \
90 return name##_PCTRIE_VAL2PTR(pctrie_lookup_ge(ptree, key)); \
94 name##_PCTRIE_RECLAIM(struct pctrie *ptree) \
97 pctrie_reclaim_allnodes(ptree, freef
[all...]
/freebsd-10.1-release/contrib/ntp/ntpd/
H A Dntp_config.c261 static void free_config_tree(config_tree *ptree);
378 config_tree *ptree
381 if (ptree->auth.keys) {
382 free(ptree->auth.keys);
383 ptree->auth.keys = NULL;
386 if (ptree->auth.keysdir) {
387 free(ptree->auth.keysdir);
388 ptree->auth.keysdir = NULL;
391 if (ptree->auth.ntp_signd_socket) {
392 free(ptree
413 config_tree *ptree; local
494 dump_config_tree( config_tree *ptree, FILE *df, int comment ) argument
2797 config_nic_rules( config_tree *ptree, int input_from_file ) argument
4369 config_ntpd( config_tree *ptree, int input_from_files ) argument
4570 config_tree *ptree; local
[all...]
/freebsd-10.1-release/sys/kern/
H A Dsubr_pctrie.c97 pctrie_node_get(struct pctrie *ptree, pctrie_alloc_t allocfn, uint64_t owner, argument
102 node = allocfn(ptree);
116 pctrie_node_put(struct pctrie *ptree, struct pctrie_node *node, argument
129 freefn(ptree, node);
160 pctrie_getroot(struct pctrie *ptree) argument
163 return ((struct pctrie_node *)ptree->pt_root);
170 pctrie_setroot(struct pctrie *ptree, struct pctrie_node *node) argument
173 ptree->pt_root = (uintptr_t)node;
247 pctrie_reclaim_allnodes_int(struct pctrie *ptree, struct pctrie_node *node, argument
258 pctrie_reclaim_allnodes_int(ptree,
291 pctrie_insert(struct pctrie *ptree, uint64_t *val, pctrie_alloc_t allocfn) argument
363 pctrie_lookup(struct pctrie *ptree, uint64_t index) argument
389 pctrie_lookup_ge(struct pctrie *ptree, uint64_t index) argument
500 pctrie_lookup_le(struct pctrie *ptree, uint64_t index) argument
614 pctrie_remove(struct pctrie *ptree, uint64_t index, pctrie_free_t freefn) argument
670 pctrie_reclaim_allnodes(struct pctrie *ptree, pctrie_free_t freefn) argument
[all...]
H A Dvfs_subr.c285 buf_trie_alloc(struct pctrie *ptree) argument
292 buf_trie_free(struct pctrie *ptree, void *node) argument
/freebsd-10.1-release/crypto/openssl/crypto/x509v3/
H A Dv3_ncons.c115 STACK_OF(GENERAL_SUBTREE) **ptree = NULL;
124 ptree = &ncons->permittedSubtrees;
127 ptree = &ncons->excludedSubtrees;
137 if (!*ptree)
138 *ptree = sk_GENERAL_SUBTREE_new_null();
139 if (!*ptree || !sk_GENERAL_SUBTREE_push(*ptree, sub))
H A Dpcy_tree.c144 static int tree_init(X509_POLICY_TREE **ptree, STACK_OF(X509) *certs, argument
157 *ptree = NULL;
291 *ptree = tree;
730 int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy, argument
737 *ptree = NULL;
815 *ptree = tree;
/freebsd-10.1-release/gnu/usr.bin/cc/cc1plus/
H A DMakefile14 mangle.c method.c name-lookup.c parser.c pt.c ptree.c repo.c rtti.c \
/freebsd-10.1-release/contrib/gcc/
H A Dipa-prop.c190 ipa_method_tree_map (struct cgraph_node *mt, tree ptree) argument
196 if (IPA_NODE_REF (mt)->ipa_param_tree[i] == ptree)
/freebsd-10.1-release/contrib/ntp/include/
H A Dntp_config.h315 int dump_config_tree(config_tree *ptree, FILE *df, int comment);
/freebsd-10.1-release/crypto/openssl/crypto/x509/
H A Dx509_vfy.h561 int X509_policy_check(X509_POLICY_TREE **ptree, int *pexplicit_policy,

Completed in 106 milliseconds