Home
last modified time | relevance | path

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

12345678910>>...35

/external/jemalloc_new/src/
Drtree.c53 rtree_leaf_dalloc_impl(tsdn_t *tsdn, rtree_t *rtree, rtree_leaf_elm_t *leaf) { in rtree_leaf_dalloc_impl() argument
78 rtree_leaf_elm_t *leaf = in rtree_delete_subtree() local
81 if (leaf != NULL) { in rtree_delete_subtree()
82 rtree_leaf_dalloc(tsdn, rtree, leaf); in rtree_delete_subtree()
135 rtree_leaf_elm_t *leaf = atomic_load_p(elmp, ATOMIC_RELAXED); in rtree_leaf_init() local
136 if (leaf == NULL) { in rtree_leaf_init()
137 leaf = rtree_leaf_alloc(tsdn, rtree, ZU(1) << in rtree_leaf_init()
139 if (leaf == NULL) { in rtree_leaf_init()
147 atomic_store_p(elmp, leaf, ATOMIC_RELEASE); in rtree_leaf_init()
151 return leaf; in rtree_leaf_init()
[all …]
/external/bcc/examples/networking/vlan_learning/
Dvlan_learning.c28 struct ifindex_leaf_t *leaf = ingress.lookup(&src_mac); in handle_phys2virt() local
29 if (leaf) { in handle_phys2virt()
30 lock_xadd(&leaf->tx_pkts, 1); in handle_phys2virt()
31 lock_xadd(&leaf->tx_bytes, skb->len); in handle_phys2virt()
33 int out_ifindex = leaf->out_ifindex; in handle_phys2virt()
42 bpf_clone_redirect(skb, leaf->out_ifindex, 0); in handle_phys2virt()
53 struct ifindex_leaf_t *leaf = egress.lookup(&src_ifindex); in handle_virt2phys() local
54 if (leaf) { in handle_virt2phys()
55 lock_xadd(&leaf->tx_pkts, 1); in handle_virt2phys()
56 lock_xadd(&leaf->tx_bytes, skb->len); in handle_virt2phys()
[all …]
/external/e2fsprogs/lib/ext2fs/
Dnls_utf8.c487 utf8leaf_t *leaf;
496 leaf = utf8lookup(data, hangul, s);
497 if (!leaf)
500 leaf_age = utf8agetab[LEAF_GEN(leaf)];
517 utf8leaf_t *leaf;
526 leaf = utf8lookup(data, hangul, s);
527 if (!leaf)
529 leaf_age = utf8agetab[LEAF_GEN(leaf)];
545 utf8leaf_t *leaf;
554 leaf = utf8nlookup(data, hangul, s, len);
[all …]
/external/f2fs-tools/lib/
Dnls_utf8.c485 utf8leaf_t *leaf;
494 leaf = utf8lookup(data, hangul, s);
495 if (!leaf)
498 leaf_age = utf8agetab[LEAF_GEN(leaf)];
515 utf8leaf_t *leaf;
524 leaf = utf8lookup(data, hangul, s);
525 if (!leaf)
527 leaf_age = utf8agetab[LEAF_GEN(leaf)];
543 utf8leaf_t *leaf;
552 leaf = utf8nlookup(data, hangul, s, len);
[all …]
/external/bcc/tests/python/
Dtest_call1.c19 u64 *leaf = stats.lookup(&key); in parse_ether() local
20 if (leaf) (*leaf)++; in parse_ether()
35 u64 *leaf = stats.lookup(&key); in parse_arp() local
36 if (leaf) (*leaf)++; in parse_arp()
47 u64 *leaf = stats.lookup(&key); in parse_ip() local
48 if (leaf) (*leaf)++; in parse_ip()
56 u64 *leaf = stats.lookup(&key); in eop() local
57 if (leaf) (*leaf)++; in eop()
Dtest_trace1.b15 struct Counters *leaf;
16 leaf = stats[key];
17 if leaf {
18 atomic_add(leaf->stat2, 1);
34 struct Counters *leaf;
35 leaf = stats[key];
36 if leaf {
37 atomic_add(leaf->stat1, 1);
Dtest_xlate1.py49 leaf = self.xlate[key1]
50 self.assertGreater(leaf.ip_xlated_pkts, 0)
51 self.assertGreater(leaf.arp_xlated_pkts, 0)
52 leaf = self.xlate[key2]
53 self.assertGreater(leaf.ip_xlated_pkts, 0)
54 self.assertGreater(leaf.arp_xlated_pkts, 0)
/external/grpc-grpc-java/context/src/test/java/io/grpc/
DPersistentHashArrayMappedTrieTest.java38 Leaf<Key, Object> leaf = new Leaf<Key, Object>(key, value1); in leaf_replace() local
39 Node<Key, Object> ret = leaf.put(key, value2, key.hashCode(), 0); in leaf_replace()
43 assertSame(value1, leaf.get(key, key.hashCode(), 0)); in leaf_replace()
45 assertEquals(1, leaf.size()); in leaf_replace()
55 Leaf<Key, Object> leaf = new Leaf<Key, Object>(key1, value1); in leaf_collision() local
56 Node<Key, Object> ret = leaf.put(key2, value2, key2.hashCode(), 0); in leaf_collision()
61 assertSame(value1, leaf.get(key1, key1.hashCode(), 0)); in leaf_collision()
62 assertSame(null, leaf.get(key2, key2.hashCode(), 0)); in leaf_collision()
64 assertEquals(1, leaf.size()); in leaf_collision()
74 Leaf<Key, Object> leaf = new Leaf<Key, Object>(key1, value1); in leaf_insert() local
[all …]
/external/bcc/tools/
Ddeadlock_detector.c77 struct thread_to_held_mutex_leaf_t *leaf = in trace_mutex_acquire() local
79 if (!leaf) { in trace_mutex_acquire()
92 if (leaf->held_mutexes[i].mutex == mutex) { in trace_mutex_acquire()
104 if (!leaf->held_mutexes[i].mutex) { in trace_mutex_acquire()
106 leaf->held_mutexes[i].mutex = mutex; in trace_mutex_acquire()
107 leaf->held_mutexes[i].stack_id = stack_id; in trace_mutex_acquire()
115 edge_key.mutex1 = leaf->held_mutexes[i].mutex; in trace_mutex_acquire()
119 edge_leaf.mutex1_stack_id = leaf->held_mutexes[i].stack_id; in trace_mutex_acquire()
151 struct thread_to_held_mutex_leaf_t *leaf = in trace_mutex_release() local
153 if (!leaf) { in trace_mutex_release()
[all …]
/external/e2fsprogs/util/
Dmkutf8data.c381 void *leaf = NULL; in lookup() local
384 while (!leaf && node) { in lookup()
392 leaf = node->right; in lookup()
401 leaf = node->left; in lookup()
408 return leaf; in lookup()
531 static int insert(struct tree *tree, char *key, int keylen, void *leaf) in insert() argument
557 *cursor = leaf; in insert()
575 leaf = node->left; in insert()
580 tree->root = leaf; in insert()
583 parent->left = leaf; in insert()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/gpu/
Dgpu_transfer_manager.cc58 for (auto& leaf : buffer_tree.leaves()) { in TransferLiteralToInfeed() local
59 const Shape& sub_shape = ShapeUtil::GetSubshape(literal_shape, leaf.first); in TransferLiteralToInfeed()
62 TF_ASSIGN_OR_RETURN(leaf.second, TransferBufferToInfeedInternal( in TransferLiteralToInfeed()
64 literal.untyped_data(leaf.first))); in TransferLiteralToInfeed()
121 for (auto& leaf : outfeed_buffers.leaves()) { in TransferLiteralFromOutfeed() local
122 const Shape& shape = ShapeUtil::GetSubshape(literal.shape(), leaf.first); in TransferLiteralFromOutfeed()
124 leaf.second = in TransferLiteralFromOutfeed()
126 leaf.second->set_destination( in TransferLiteralFromOutfeed()
127 absl::make_unique<MutableBorrowingLiteral>(literal, leaf.first)); in TransferLiteralFromOutfeed()
136 for (auto& leaf : outfeed_buffers.leaves()) { in TransferLiteralFromOutfeed() local
[all …]
/external/llvm-project/clang/test/Headers/
Dsgxintrin.c8 uint32_t test_encls(uint32_t leaf, size_t data[3]) { in test_encls() argument
12 return _encls_u32(leaf, data); in test_encls()
15 uint32_t test_enclu(uint32_t leaf, size_t data[3]) { in test_enclu() argument
19 return _enclu_u32(leaf, data); in test_enclu()
22 uint32_t test_enclv(uint32_t leaf, size_t data[3]) { in test_enclv() argument
26 return _enclv_u32(leaf, data); in test_enclv()
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/
Dx509_test.cc1013 static int Verify(X509 *leaf, const std::vector<X509 *> &roots, in Verify() argument
1043 ctx.get(), store.get(), leaf, in Verify()
1073 static int Verify(X509 *leaf, const std::vector<X509 *> &roots, in Verify() argument
1078 Verify(leaf, roots, intermediates, crls, flags, false, nullptr); in Verify()
1080 Verify(leaf, roots, intermediates, crls, flags, true, nullptr); in Verify()
1100 bssl::UniquePtr<X509> leaf(CertFromPEM(kLeafPEM)); in TEST() local
1109 ASSERT_TRUE(leaf); in TEST()
1116 Verify(leaf.get(), empty, empty, empty_crls)); in TEST()
1118 Verify(leaf.get(), empty, {intermediate.get()}, empty_crls)); in TEST()
1121 Verify(leaf.get(), {root.get()}, {intermediate.get()}, empty_crls)); in TEST()
[all …]
/external/boringssl/src/crypto/x509/
Dx509_test.cc1072 static int Verify(X509 *leaf, const std::vector<X509 *> &roots, in Verify() argument
1102 ctx.get(), store.get(), leaf, in Verify()
1132 static int Verify(X509 *leaf, const std::vector<X509 *> &roots, in Verify() argument
1137 Verify(leaf, roots, intermediates, crls, flags, false, nullptr); in Verify()
1139 Verify(leaf, roots, intermediates, crls, flags, true, nullptr); in Verify()
1159 bssl::UniquePtr<X509> leaf(CertFromPEM(kLeafPEM)); in TEST() local
1168 ASSERT_TRUE(leaf); in TEST()
1175 Verify(leaf.get(), empty, empty, empty_crls)); in TEST()
1177 Verify(leaf.get(), empty, {intermediate.get()}, empty_crls)); in TEST()
1180 Verify(leaf.get(), {root.get()}, {intermediate.get()}, empty_crls)); in TEST()
[all …]
/external/bcc/src/python/bcc/
Dtable.py183 def leaf_sprintf(self, leaf): argument
186 len(buf), ct.byref(leaf))
200 leaf = self.Leaf()
202 ct.byref(leaf))
205 return leaf
208 leaf = self.Leaf()
209 res = lib.bpf_lookup_elem(self.map_fd, ct.byref(key), ct.byref(leaf))
212 return leaf
214 def __setitem__(self, key, leaf): argument
215 res = lib.bpf_update_elem(self.map_fd, ct.byref(key), ct.byref(leaf), 0)
[all …]
/external/cldr/tools/python/src/cldr/
Drefmirror.py46 leaf=name[len(cldrdir):] variable
47 if(leaf.startswith('/')):
48 leaf=leaf[1:] variable
49 print "dir: %s" % str(leaf)
50 out = "%s/%s" % (htmldir,leaf)
51 if(len(leaf)>0):
/external/llvm-project/llvm/test/Bitcode/
Dupgrade-frame-pointer.ll2 ;; "no-frame-pointer-elim-non-leaf" (value is ignored) can be upgraded to
13 define void @non_leaf0() "no-frame-pointer-elim-non-leaf" { ret void }
21 ;; "no-frame-pointer-elim-non-leaf" is present.
25 attributes #0 = { readnone "no-frame-pointer-elim"="true" "no-frame-pointer-elim-non-leaf" }
26 attributes #1 = { readnone "no-frame-pointer-elim"="false" "no-frame-pointer-elim-non-leaf" }
31 ; CHECK: attributes #2 = { "frame-pointer"="non-leaf" }
32 ; CHECK: attributes #3 = { readnone "frame-pointer"="non-leaf" }
/external/llvm-project/mlir/tools/mlir-tblgen/
DRewriterGen.cpp165 std::string handleOpArgument(DagLeaf leaf, StringRef patArgName);
268 auto leaf = tree.getArgAsLeaf(i); in emitNativeCodeMatch() local
269 if (leaf.isAttrMatcher() || leaf.isConstantAttr()) { in emitNativeCodeMatch()
271 } else if (leaf.isOperandMatcher()) { in emitNativeCodeMatch()
308 DagLeaf leaf = tree.getArgAsLeaf(i); in emitNativeCodeMatch() local
309 auto constraint = leaf.getAsConstraint(); in emitNativeCodeMatch()
841 DagLeaf leaf = tree.getArgAsLeaf(0); in handleLocationDirective() local
842 if (leaf.isStringAttr()) in handleLocationDirective()
845 leaf.getStringAttr()) in handleLocationDirective()
856 DagLeaf leaf = tree.getArgAsLeaf(i); in handleLocationDirective() local
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/ct/
DCTVerifier.java59 OpenSSLX509Certificate leaf = chain[0]; in verifySignedCertificateTimestamps() local
63 verifyExternalSCTs(tlsScts, leaf, result); in verifySignedCertificateTimestamps()
66 verifyExternalSCTs(ocspScts, leaf, result); in verifySignedCertificateTimestamps()
87 OpenSSLX509Certificate leaf = chain[0]; in verifyEmbeddedSCTs() local
91 precertEntry = CertificateEntry.createForPrecertificate(leaf, issuer); in verifyEmbeddedSCTs()
114 OpenSSLX509Certificate leaf, in verifyExternalSCTs() argument
123 x509Entry = CertificateEntry.createForX509Certificate(leaf); in verifyExternalSCTs()
242 private List<SignedCertificateTimestamp> getSCTsFromX509Extension(OpenSSLX509Certificate leaf) { in getSCTsFromX509Extension() argument
243 byte[] extData = leaf.getExtensionValue(CTConstants.X509_SCT_LIST_OID); in getSCTsFromX509Extension()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
DCTVerifier.java63 OpenSSLX509Certificate leaf = chain[0]; in verifySignedCertificateTimestamps() local
67 verifyExternalSCTs(tlsScts, leaf, result); in verifySignedCertificateTimestamps()
70 verifyExternalSCTs(ocspScts, leaf, result); in verifySignedCertificateTimestamps()
91 OpenSSLX509Certificate leaf = chain[0]; in verifyEmbeddedSCTs() local
95 precertEntry = CertificateEntry.createForPrecertificate(leaf, issuer); in verifyEmbeddedSCTs()
118 OpenSSLX509Certificate leaf, in verifyExternalSCTs() argument
127 x509Entry = CertificateEntry.createForX509Certificate(leaf); in verifyExternalSCTs()
246 private List<SignedCertificateTimestamp> getSCTsFromX509Extension(OpenSSLX509Certificate leaf) { in getSCTsFromX509Extension() argument
247 byte[] extData = leaf.getExtensionValue(CTConstants.X509_SCT_LIST_OID); in getSCTsFromX509Extension()
/external/perfetto/test/trace_processor/track_event/
Dtrack_event_merged_debug_annotations.textproto42 nested_type: 0 # leaf
48 nested_type: 0 # leaf
52 nested_type: 0 # leaf
103 nested_type: 0 # leaf
109 nested_type: 0 # leaf
113 nested_type: 0 # leaf
/external/dagger2/javatests/dagger/functional/producers/aot/
DProducesMethodShadowsInjectConstructorTest.java108 Leaf leaf(); in leaf() method
113 Leaf leaf = DaggerProducesMethodShadowsInjectConstructorTest_Root.create().leaf(); in shadowedInjectConstructorDoesNotCauseClassCast() local
114 leaf.dependsOnShadowingProducer().get(); in shadowedInjectConstructorDoesNotCauseClassCast()
115 assertThat(leaf.shadowedProvisionMultibinding().get()).hasSize(2); in shadowedInjectConstructorDoesNotCauseClassCast()
116 assertThat(leaf.emptyProvisionBindingToPresentProductionBinding().get()).isPresent(); in shadowedInjectConstructorDoesNotCauseClassCast()
/external/llvm/include/llvm/IR/
DMetadata.def28 // Handler for leaf nodes in the class hierarchy.
33 // Handler for non-leaf nodes in the class hierarchy.
38 // Handler for specialized and uniquable leaf nodes under MDNode. Defers to
51 // Handler for leaf nodes under MDNode.
56 // Handler for leaf nodes under MDNode.
61 // Handler for non-leaf nodes under MDNode.
66 // Handler for specialized leaf nodes under MDNode.
71 // Handler for specialized non-leaf nodes under MDNode.
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
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.
/external/llvm-project/llvm/include/llvm/IR/
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.

12345678910>>...35