Home
last modified time | relevance | path

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

1234567

/openbsd-src/sys/arch/amd64/amd64/
H A Dcacheinfo.c183 intel_print_one_cache(struct cpu_info *ci, int leaf, u_int eax, u_int ebx, in intel_print_one_cache() argument
201 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()
238 CPUID_LEAF(fn, leaf, eax, ebx, ecx, dummy); 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()
241 PREV_SAME(prev_cache[leaf][2], ecx)) { in intel_print_cacheinfo()
248 for (i = 0; i < leaf; i++) in intel_print_cacheinfo()
[all …]
/openbsd-src/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-src/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
631 next if $leaf =~ /\A(?:\.|\.\.|t|demo)\z/;
632 if ($leaf eq 'lib') {
636 if ($leaf eq $first) {
641 return $leaf
643 $leaf =~ s/\.\z//
[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-src/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-src/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-src/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-src/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
100 8a. An expired leaf certificate signed by an intermediate that is then
103 9a. A leaf certificate signed by an expired intermediate, which is
[all …]
/openbsd-src/sys/dev/pci/drm/i915/selftests/
H A Di915_syncmap.c146 static int check_seqno(struct i915_syncmap *leaf, unsigned int idx, u32 seqno) in check_seqno() argument
148 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()
[all …]
/openbsd-src/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-src/usr.sbin/vmd/
H A Dx86_vm.c507 vmh.vmh_cpuids[0].leaf = 0x00; in dump_send_header()
510 vmh.vmh_cpuids[1].leaf = 0x00; in dump_send_header()
513 vmh.vmh_cpuids[2].leaf = 0x00; in dump_send_header()
516 vmh.vmh_cpuids[3].leaf = 0x00; in dump_send_header()
519 vmh.vmh_cpuids[4].leaf = 0x00; in dump_send_header()
525 vmh.vmh_cpuids[i].leaf, in dump_send_header()
1246 unsigned int code, leaf; in vmd_check_vmh()
1261 leaf = vmh->vmh_cpuids[i].leaf; in vmd_check_vmh()
1262 if (leaf ! in vmd_check_vmh()
1249 unsigned int code, leaf; vmd_check_vmh() local
[all...]
/openbsd-src/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-src/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-src/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-src/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 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 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 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-src/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-src/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()
1094 x509_verify(struct x509_verify_ctx *ctx, X509 *leaf, char *name) in x509_verify() argument
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()
[all …]
/openbsd-src/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()
1383 return branched() ? path.leaf<Leaf>().start(path.leafOffset()) : in unsafeStart()
1384 path.leaf<RootLeaf>().start(path.leafOffset()); in unsafeStart()
1390 return branched() ? path.leaf<Leaf>().stop(path.leafOffset()) : in unsafeStop()
1391 path.leaf<RootLeaf>().stop(path.leafOffset()); in unsafeStop()
1397 return branched() ? path.leaf<Leaf>().value(path.leafOffset()) : in unsafeValue()
1398 path.leaf<RootLeaf>().value(path.leafOffset()); in unsafeValue()
[all …]
/openbsd-src/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-src/usr.sbin/ldapd/
H A Dbtree.c259 struct node *leaf, struct btval *data);
1495 btree_read_data(struct btree *bt, struct mpage *mp, struct node *leaf, in btree_read_data() argument
1507 if (!F_ISSET(leaf->flags, F_BIGDATA)) { in btree_read_data()
1508 data->size = leaf->n_dsize; in btree_read_data()
1513 bcopy(NODEDATA(leaf), data->data, data->size); in btree_read_data()
1517 data->data = NODEDATA(leaf); in btree_read_data()
1528 DPRINTF("allocating %u byte for overflow data", leaf->n_dsize); in btree_read_data()
1529 if ((data->data = malloc(leaf->n_dsize)) == NULL) in btree_read_data()
1531 data->size = leaf->n_dsize; in btree_read_data()
1534 bcopy(NODEDATA(leaf), &pgno, sizeof(pgno)); in btree_read_data()
[all …]
/openbsd-src/gnu/usr.bin/perl/dist/Safe/
H A DSafe.pm191 my ($stem, $leaf);
195 ($stem, $leaf) = $pkg =~ m/(.*::)(\w+::)$/;
201 #warn "erase($pkg) stem=$stem, leaf=$leaf";
205 # delete $stem_symtab->{$leaf};
207 my $leaf_glob = $stem_symtab->{$leaf};
214 # my $foo = undef ${"$stem\::"}{"$leaf\::"};
217 delete $stem_symtab->{$leaf};
/openbsd-src/gnu/usr.bin/perl/win32/
H A DFindExt.pm113 my $leaf = $item;
116 $leaf =~ s/.*-//;

1234567