Home
last modified time | relevance | path

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

12345678

/openbsd/sys/arch/amd64/amd64/
H A Dcacheinfo.c201 if (leaf == 0) in intel_print_one_cache()
229 int leaf; in intel_print_cacheinfo() local
232 leaf = 0; in intel_print_cacheinfo()
237 for (; leaf < MAX_CACHE_LEAF; leaf++) { in intel_print_cacheinfo()
239 if (PREV_SAME(prev_cache[leaf][0], eax) && in intel_print_cacheinfo()
240 PREV_SAME(prev_cache[leaf][1], ebx) && in intel_print_cacheinfo()
248 for (i = 0; i < leaf; i++) in intel_print_cacheinfo()
259 for (; leaf < MAX_CACHE_LEAF; leaf++) { in intel_print_cacheinfo()
264 PREV_SET(prev_cache[leaf][0], eax); in intel_print_cacheinfo()
265 PREV_SET(prev_cache[leaf][1], ebx); in intel_print_cacheinfo()
[all …]
/openbsd/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/pat_trie_/
H A Dtraits.hpp116 leaf; typedef
138 leaf,
149 leaf,
160 leaf,
171 leaf,
181 leaf,
193 leaf,
277 leaf; typedef
299 leaf,
312 leaf,
[all …]
/openbsd/gnu/usr.bin/perl/
H A Dmake_ext.pl373 my $leaf = pop @dirs;
374 my $leafname = "$leaf.pm";
627 foreach my $leaf (<*>) {
628 if (-d $leaf) {
629 $leaf =~ s/\.DIR\z//i
632 if ($leaf eq 'lib') {
636 if ($leaf eq $first) {
641 return $leaf
643 $leaf =~ s/\.\z//
660 if ($leaf eq "$last.pm") {
[all …]
H A Dinstallman92 my ($path, $leaf) = m|^(\S*/(\S+))|;
94 next if $man1{$leaf};
95 pod2man({$leaf, $path}, $opts{man1dir}, $opts{man1ext});
98 my $old = "$opts{man1dir}/$leaf.$opts{man1ext}";
/openbsd/gnu/usr.bin/perl/t/op/
H A Ddbm.t66 my $leaf = 'pleaseletthisfilenotexist';
67 dbmopen(%truffe, $leaf, undef);
69 unlink $leaf
70 if -e $leaf;
71 1 while unlink glob "$leaf.*";
/openbsd/regress/usr.bin/tsort/
H A Dbuild-tree18 my $leaf = 'a';
22 print "$root $root$leaf\n";
23 build_tree($root.$leaf, $depth-1) if $depth > 0;
24 $leaf++;
/openbsd/gnu/llvm/llvm/include/llvm/IR/
H A DMetadata.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.
/openbsd/regress/lib/libcrypto/certs/
H A DREADME4 in a roots.pem file, while the leaf certificate and any untrusted
7 1a. A leaf certificate signed by the root certificate with no
10 2a. A leaf certificate signed by an intermediate, which is signed
19 3a. A leaf certificate signed by three intermediates, the last of
34 4a. A leaf certificate signed by an intermediate, that is cross
57 5a. A leaf certificate signed by an intermediate, that is cross
85 6a. A leaf certificate signed by an intermediate, that is cross
92 7a. A leaf certificate signed by an intermediate, that is cross
103 9a. A leaf certificate signed by an expired intermediate, which is
106 10a. A leaf certificate signed by an intermediate, that is cross
[all …]
/openbsd/sys/dev/pci/drm/i915/selftests/
H A Di915_syncmap.c148 if (leaf->height) { in check_seqno()
150 __func__, leaf->height); in check_seqno()
154 if (__sync_seqno(leaf)[idx] != seqno) { in check_seqno() local
156 __func__, idx, __sync_seqno(leaf)[idx], seqno); in check_seqno()
508 struct i915_syncmap *leaf = __sync_child(sync)[idx]; in igt_syncmap_compact() local
510 if (leaf->height) { in igt_syncmap_compact()
516 if (leaf->parent != sync) { in igt_syncmap_compact()
523 if (!is_power_of_2(leaf->bitmap)) { in igt_syncmap_compact()
525 idx, leaf->bitmap, hweight32(leaf->bitmap)); in igt_syncmap_compact()
530 if (leaf->bitmap != BIT(idx)) { in igt_syncmap_compact()
[all …]
/openbsd/gnu/usr.bin/perl/lib/
H A DSymbol.pm155 my($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
158 return unless defined $stem_symtab and exists $stem_symtab->{$leaf};
163 my $leaf_symtab = *{$stem_symtab->{$leaf}}{HASH};
172 delete $stem_symtab->{$leaf};
/openbsd/regress/sys/kern/ptrace/xstate/
H A Dxstate.c48 cpuid(uint32_t leaf, uint32_t subleaf, struct cpuid *out) in cpuid() argument
52 : "a" (leaf), "c" (subleaf)); in cpuid()
62 struct cpuid leaf; in xstate_init() local
65 cpuid(0x1, 0, &leaf); in xstate_init()
66 if ((leaf.c & CPUID_01_C_XSAVE_MASK) == 0) { in xstate_init()
91 cpuid(0xd, XSTATE_COMPONENT_AVX, &leaf); in xstate_init()
93 xstate->components[XSTATE_COMPONENT_AVX].offset = leaf.b; in xstate_init()
94 xstate->components[XSTATE_COMPONENT_AVX].size = leaf.a; in xstate_init()
/openbsd/usr.sbin/vmd/
H A Dx86_vm.c525 vmh.vmh_cpuids[i].leaf, in dump_send_header()
1246 unsigned int code, leaf; in vmd_check_vmh() local
1261 leaf = vmh->vmh_cpuids[i].leaf; in vmd_check_vmh()
1262 if (leaf != 0x00) { in vmd_check_vmh()
1291 code, leaf); in vmd_check_vmh()
1298 code, leaf); in vmd_check_vmh()
1309 code, leaf); in vmd_check_vmh()
1316 code, leaf); in vmd_check_vmh()
1343 code, leaf); in vmd_check_vmh()
1350 code, leaf); in vmd_check_vmh()
[all …]
/openbsd/lib/libcurses/tinfo/
H A Daccess.c143 char *leaf; in _nc_access() local
146 leaf = _nc_basename(head); in _nc_access()
147 if (leaf == 0) in _nc_access()
148 leaf = head; in _nc_access()
149 *leaf = '\0'; in _nc_access()
150 if (head == leaf) in _nc_access()
/openbsd/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mutex.cpp74 bool leaf[kMutexTypeMax]; in DebugMutexInit() local
75 internal_memset(&leaf, 0, sizeof(leaf)); in DebugMutexInit()
88 CHECK(!leaf[t]); in DebugMutexInit()
89 leaf[t] = true; in DebugMutexInit()
106 if (!leaf[t]) in DebugMutexInit()
110 if (z == MutexInvalid || t == z || leaf[z]) in DebugMutexInit()
/openbsd/sys/net/
H A Dpf_ruleset.c147 char *leaf, *p; in pf_get_leaf_ruleset() local
155 leaf = p; in pf_get_leaf_ruleset()
157 leaf = strrchr(p, '/'); in pf_get_leaf_ruleset()
158 if (leaf != NULL) { in pf_get_leaf_ruleset()
159 *leaf = '\0'; in pf_get_leaf_ruleset()
163 leaf = path; in pf_get_leaf_ruleset()
173 *path_remainder = leaf; in pf_get_leaf_ruleset()
177 while (*leaf != '\0') in pf_get_leaf_ruleset()
178 leaf++; in pf_get_leaf_ruleset()
179 *leaf = '/'; in pf_get_leaf_ruleset()
/openbsd/regress/lib/libcrypto/x509/
H A Dverify.c113 X509 *leaf = NULL; in verify_cert() local
129 leaf = sk_X509_shift(bundle); in verify_cert()
135 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
175 X509_free(leaf); in verify_cert()
183 X509 *leaf = NULL; in verify_cert_new() local
194 leaf = sk_X509_shift(bundle); in verify_cert_new()
198 if (!X509_STORE_CTX_init(xsc, NULL, leaf, bundle)) { in verify_cert_new()
210 if ((*chains = x509_verify(ctx, leaf, NULL)) == 0) { in verify_cert_new()
234 X509_free(leaf); in verify_cert_new()
H A Dcallbackfailures.c124 X509 *leaf = NULL; in verify_cert() local
137 leaf = sk_X509_shift(bundle); in verify_cert()
143 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
181 X509_free(leaf); in verify_cert()
H A Dexpirecallback.c122 X509 *leaf = NULL; in verify_cert() local
138 leaf = sk_X509_shift(bundle); in verify_cert()
144 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
185 X509_free(leaf); in verify_cert()
H A Dcallback.c119 X509 *leaf = NULL; in verify_cert() local
130 leaf = sk_X509_shift(bundle); in verify_cert()
136 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
172 X509_free(leaf); in verify_cert()
/openbsd/regress/lib/libcrypto/x509/bettertls/
H A Dverify.c108 X509 *leaf = NULL; in verify_cert() local
122 leaf = sk_X509_shift(cert); in verify_cert()
127 if (!X509_STORE_CTX_init(xsc, store, leaf, bundle)) { in verify_cert()
158 if (!X509_STORE_CTX_init(xscip, store, leaf, bundle)) { in verify_cert()
190 X509_free(leaf); in verify_cert()
/openbsd/lib/libcrypto/x509/
H A Dx509_verify.c472 X509 *leaf = x509_verify_chain_leaf(chain); in x509_verify_ctx_add_chain() local
491 if (!x509_verify_cert_valid(ctx, leaf, NULL)) in x509_verify_ctx_add_chain()
493 if (!x509_verify_cert_hostname(ctx, leaf, name)) in x509_verify_ctx_add_chain()
1105 if (leaf != NULL || name != NULL) { in x509_verify()
1109 leaf = ctx->xsc->cert; in x509_verify()
1126 if (!X509_up_ref(leaf)) { in x509_verify()
1130 if (!sk_X509_push(ctx->xsc->chain, leaf)) { in x509_verify()
1131 X509_free(leaf); in x509_verify()
1136 ctx->xsc->current_cert = leaf; in x509_verify()
1157 if (x509_verify_ctx_cert_is_root(ctx, leaf, full_chain)) { in x509_verify()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/ADT/
H A DIntervalMap.h805 template <typename NodeT> NodeT &leaf() const { in leaf() function
970 RootLeaf leaf; member
988 return leaf; in rootLeaf()
992 return leaf; in rootLeaf()
1432 return &path.template leaf<Leaf>() == &RHS.path.template leaf<Leaf>();
1670 RootLeaf &Node = P.leaf<RootLeaf>(); in canCoalesceLeft()
1676 Leaf &Node = P.leaf<Leaf>(); in canCoalesceLeft()
1700 RootLeaf &Node = P.leaf<RootLeaf>(); in canCoalesceRight()
1705 Leaf &Node = P.leaf<Leaf>(); in canCoalesceRight()
1878 Leaf &CurLeaf = P.leaf<Leaf>(); in treeInsert()
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeViewTypes.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
/openbsd/gnu/usr.bin/perl/dist/Safe/
H A DSafe.pm191 my ($stem, $leaf);
195 ($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
207 my $leaf_glob = $stem_symtab->{$leaf};
217 delete $stem_symtab->{$leaf};
/openbsd/usr.sbin/ldapd/
H A Dbtree.c1559 struct node *leaf; in btree_txn_get() local
1588 if (leaf && exact) in btree_txn_get()
1679 struct node *leaf; in btree_cursor_next() local
1725 struct node *leaf; in btree_cursor_set() local
1746 if (leaf == NULL) { in btree_cursor_set()
1754 leaf = NODEPTR(mp, 0); in btree_cursor_set()
1776 struct node *leaf; in btree_cursor_first() local
1783 leaf = NODEPTR(mp, 0); in btree_cursor_first()
2570 struct node *leaf; in btree_txn_del() local
2889 struct node *leaf; in btree_txn_put() local
[all …]

12345678