/external/jemalloc_new/src/ |
D | rtree.c | 53 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/ |
D | vlan_learning.c | 28 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/bcc/tests/python/ |
D | test_call1.c | 19 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()
|
D | test_trace1.b | 15 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);
|
/external/f2fs-tools/lib/ |
D | nls_utf8.c | 485 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/e2fsprogs/lib/ext2fs/ |
D | nls_utf8.c | 487 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/grpc-grpc-java/context/src/test/java/io/grpc/ |
D | PersistentHashArrayMappedTrieTest.java | 38 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/ |
D | deadlock_detector.c | 77 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/tensorflow/tensorflow/compiler/xla/service/gpu/ |
D | gpu_transfer_manager.cc | 58 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/e2fsprogs/util/ |
D | mkutf8data.c | 381 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/llvm-project/clang/test/Headers/ |
D | sgxintrin.c | 8 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/ |
D | x509_test.cc | 1013 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/ |
D | x509_test.cc | 1072 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/libabigail/tests/data/test-abidiff-exit/ |
D | test-leaf-redundant-report.txt | 2 Changed leaf types summary: 0 leaf type changed 8 [C] 'function void fn1(sto1)' at test-leaf-redundant-v1.c:12:1 has some sub-type changes: 13 [C] 'function void fn2(sto2)' at test-leaf-redundant-v1.c:15:1 has some sub-type changes: 18 'double y', at offset 64 (in bits) at test-leaf-redundant-v1.c:9:1 20 [C] 'function void fn3(sto1*)' at test-leaf-redundant-v1.c:18:1 has some sub-type changes: 24 [C] 'function void fn4(sto2*)' at test-leaf-redundant-v1.c:21:1 has some sub-type changes:
|
D | test-leaf-peeling-report-indirect.txt | 2 Changed leaf types summary: 6 leaf types changed 6 'struct foo at test-leaf-peeling-v0.cc:2:1' changed: 13 'struct ops1 at test-leaf-peeling-v0.cc:6:1' changed: 19 'struct ops2 at test-leaf-peeling-v0.cc:10:1' changed (indirectly): 24 'struct ops3 at test-leaf-peeling-v0.cc:14:1' changed: 30 'struct ops4 at test-leaf-peeling-v0.cc:18:1' changed: 37 'struct ops5 at test-leaf-peeling-v0.cc:22:1' changed:
|
D | test-leaf-peeling-report.txt | 2 Changed leaf types summary: 6 leaf types changed 6 'struct foo at test-leaf-peeling-v0.cc:2:1' changed: 13 'struct ops1 at test-leaf-peeling-v0.cc:6:1' changed: 19 'struct ops2 at test-leaf-peeling-v0.cc:10:1' changed: 24 'struct ops3 at test-leaf-peeling-v0.cc:14:1' changed: 30 'struct ops4 at test-leaf-peeling-v0.cc:18:1' changed: 37 'struct ops5 at test-leaf-peeling-v0.cc:22:1' changed:
|
D | test-leaf-cxx-members-report.txt | 2 Changed leaf types summary: 1 leaf type changed 18 …[C] 'method virtual int ops::changed_fn()' at test-leaf-cxx-members-v1.cc:5:1 has some sub-type ch… 23 'struct ops at test-leaf-cxx-members-v0.cc:2:1' changed: 26 …'method virtual int ops::deleted_fn()' at test-leaf-cxx-members-v0.cc:6:1, virtual at voffset 1/1 … 28 …'method virtual long int ops::added_fn()' at test-leaf-cxx-members-v1.cc:11:1, virtual at voffset … 35 'int deleted_var', at offset 96 (in bits) at test-leaf-cxx-members-v0.cc:5:1 37 'long int added_var', at offset 128 (in bits) at test-leaf-cxx-members-v1.cc:10:1
|
/external/cldr/tools/python/src/cldr/ |
D | refmirror.py | 46 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/ |
D | upgrade-frame-pointer.ll | 2 ;; "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/libabigail/tests/data/test-diff-suppr/ |
D | test35-leaf-report-0.txt | 2 Changed leaf types summary: 1 (1 filtered out) leaf types changed 6 'struct leaf at test35-leaf-v0.cc:5:1' changed: 9 'char m1', at offset 32 (in bits) at test35-leaf-v1.cc:8:1
|
/external/libabigail/tests/data/test-diff-filter/ |
D | test42-leaf-report-output-0.txt | 2 Changed leaf types summary: 1 leaf type changed 6 'struct leaf at test42-leaf-report-v0.cc:4:1' changed: 9 'char m1', at offset 32 (in bits) at test42-leaf-report-v1.cc:7:1
|
/external/bcc/src/python/bcc/ |
D | table.py | 183 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/dagger2/javatests/dagger/functional/producers/aot/ |
D | ProducesMethodShadowsInjectConstructorTest.java | 108 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/perfetto/test/trace_processor/track_event/ |
D | track_event_merged_debug_annotations.textproto | 42 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/conscrypt/common/src/main/java/org/conscrypt/ct/ |
D | CTVerifier.java | 59 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()
|