| /external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
| D | TypeIndexDiscovery.cpp | 69 SmallVectorImpl<TiReference> &Refs) { in handleMethodOverloadList() argument 85 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleMethodOverloadList() 95 SmallVectorImpl<TiReference> &Refs) { in handleBaseClass() argument 100 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleBaseClass() 105 SmallVectorImpl<TiReference> &Refs) { in handleEnumerator() argument 115 SmallVectorImpl<TiReference> &Refs) { in handleDataMember() argument 121 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleDataMember() 127 SmallVectorImpl<TiReference> &Refs) { in handleOverloadedMethod() argument 132 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleOverloadedMethod() 137 SmallVectorImpl<TiReference> &Refs) { in handleOneMethod() argument [all …]
|
| /external/mesa3d/src/gallium/drivers/nouveau/ |
| D | nouveau_vp3_video_vp.c | 160 } refs[0x10]; member 170 …erences(struct nouveau_vp3_decoder *dec, struct nouveau_vp3_video_buffer *refs[16], unsigned seq, … in nouveau_vp3_handle_references() 175 if (!refs[i]) in nouveau_vp3_handle_references() 178 idx = refs[i]->valid_ref; in nouveau_vp3_handle_references() 179 //debug_printf("ref[%i] %p in slot %i\n", i, refs[i], idx); in nouveau_vp3_handle_references() 181 if (dec->refs[idx].vidbuf != refs[i]) { in nouveau_vp3_handle_references() 182 debug_printf("%p is not a real ref\n", refs[i]); in nouveau_vp3_handle_references() 187 assert(dec->refs[idx].vidbuf == refs[i]); in nouveau_vp3_handle_references() 188 dec->refs[idx].last_used = seq; in nouveau_vp3_handle_references() 191 if (dec->refs[target->valid_ref].vidbuf == target) { in nouveau_vp3_handle_references() [all …]
|
| /external/bpftool/src/ |
| D | pids.c | 34 struct obj_refs *refs; in add_ref() local 40 refs = entry->value; in add_ref() 42 for (i = 0; i < refs->ref_cnt; i++) { in add_ref() 43 if (refs->refs[i].pid == e->pid) in add_ref() 47 tmp = realloc(refs->refs, (refs->ref_cnt + 1) * sizeof(*ref)); in add_ref() 53 refs->refs = tmp; in add_ref() 54 ref = &refs->refs[refs->ref_cnt]; in add_ref() 57 refs->ref_cnt++; in add_ref() 63 refs = calloc(1, sizeof(*refs)); in add_ref() 64 if (!refs) { in add_ref() [all …]
|
| /external/libvpx/vpx_dsp/x86/ |
| D | highbd_sad4d_avx2.c | 27 uint16_t *refs[4], in highbd_sad64xHx4d() 40 r[0] = _mm256_loadu_si256((const __m256i *)refs[x]); in highbd_sad64xHx4d() 41 r[1] = _mm256_loadu_si256((const __m256i *)(refs[x] + 16)); in highbd_sad64xHx4d() 42 r[2] = _mm256_loadu_si256((const __m256i *)(refs[x] + 32)); in highbd_sad64xHx4d() 43 r[3] = _mm256_loadu_si256((const __m256i *)(refs[x] + 48)); in highbd_sad64xHx4d() 57 refs[0] += ref_stride; in highbd_sad64xHx4d() 58 refs[1] += ref_stride; in highbd_sad64xHx4d() 59 refs[2] += ref_stride; in highbd_sad64xHx4d() 60 refs[3] += ref_stride; in highbd_sad64xHx4d() 69 uint16_t *refs[4]; \ [all …]
|
| D | sad4d_avx2.c | 32 const uint8_t *refs[4]; in vpx_sad32x32x4d_avx2() local 35 refs[0] = ref_array[0]; in vpx_sad32x32x4d_avx2() 36 refs[1] = ref_array[1]; in vpx_sad32x32x4d_avx2() 37 refs[2] = ref_array[2]; in vpx_sad32x32x4d_avx2() 38 refs[3] = ref_array[3]; in vpx_sad32x32x4d_avx2() 49 r[0] = _mm256_loadu_si256((const __m256i *)refs[0]); in vpx_sad32x32x4d_avx2() 50 r[1] = _mm256_loadu_si256((const __m256i *)refs[1]); in vpx_sad32x32x4d_avx2() 51 r[2] = _mm256_loadu_si256((const __m256i *)refs[2]); in vpx_sad32x32x4d_avx2() 52 r[3] = _mm256_loadu_si256((const __m256i *)refs[3]); in vpx_sad32x32x4d_avx2() 67 refs[0] += ref_stride; in vpx_sad32x32x4d_avx2() [all …]
|
| /external/elfutils/libdwfl/ |
| D | derelocate.c | 44 } refs[0]; member 85 struct secref *refs = NULL; in cache_sections() local 140 newref->next = refs; in cache_sections() 141 refs = newref; in cache_sections() 155 for (struct secref *sec = refs; sec != NULL; sec = sec->next) in cache_sections() 168 mod->reloc_info = malloc (offsetof (struct dwfl_relocation, refs[nrefs])); in cache_sections() 176 for (size_t i = nrefs; i-- > 0; refs = refs->next) in cache_sections() 177 sortrefs[i] = refs; in cache_sections() 178 assert (refs == NULL); in cache_sections() 185 mod->reloc_info->refs[i].name = sortrefs[i]->name; in cache_sections() [all …]
|
| /external/webp/src/enc/ |
| D | backward_references_enc.c | 88 extern void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs); 89 void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs) { in VP8LClearBackwardRefs() argument 90 assert(refs != NULL); in VP8LClearBackwardRefs() 91 if (refs->tail_ != NULL) { in VP8LClearBackwardRefs() 92 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once in VP8LClearBackwardRefs() 94 refs->free_blocks_ = refs->refs_; in VP8LClearBackwardRefs() 95 refs->tail_ = &refs->refs_; in VP8LClearBackwardRefs() 96 refs->last_block_ = NULL; in VP8LClearBackwardRefs() 97 refs->refs_ = NULL; in VP8LClearBackwardRefs() 100 void VP8LBackwardRefsClear(VP8LBackwardRefs* const refs) { in VP8LBackwardRefsClear() argument [all …]
|
| /external/webrtc/api/video/ |
| D | frame_buffer_unittest.cc | 38 test::FakeFrameBuilder().Time(0).Id(0).Refs({0}).AsLast().Build())); in TEST() 45 test::FakeFrameBuilder().Time(20).Id(2).Refs({1, 1}).AsLast().Build())); in TEST() 62 test::FakeFrameBuilder().Time(10).Id(2).Refs({1}).AsLast().Build())); in TEST() 75 test::FakeFrameBuilder().Time(30).Id(3).Refs({2}).AsLast().Build())); in TEST() 79 test::FakeFrameBuilder().Time(20).Id(2).Refs({1}).AsLast().Build())); in TEST() 92 test::FakeFrameBuilder().Time(10).Id(2).Refs({1}).AsLast().Build())); in TEST() 104 test::FakeFrameBuilder().Time(20).Id(3).Refs({1}).Build())); in TEST() 106 test::FakeFrameBuilder().Time(20).Id(4).Refs({2, 3}).AsLast().Build())); in TEST() 110 test::FakeFrameBuilder().Time(10).Id(2).Refs({1}).AsLast().Build())); in TEST() 135 test::FakeFrameBuilder().Time(30).Id(3).Refs({2}).AsLast().Build())); in TEST() [all …]
|
| /external/crosvm/docs/book/src/devices/ |
| D | index.md | 39 [device side]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio… 41 [vmm side]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/vh… 44 [`cmos/rtc`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/cmos.rs 45 [`console`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/c… 46 [`fs`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/fs/ 47 [`gpu`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/gpu/ 48 [`i8042`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/i8042.rs 49 [`input`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/inp… 50 [`iommu`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/iom… 52 [`p9`]: https://chromium.googlesource.com/crosvm/crosvm/+/refs/heads/main/devices/src/virtio/p9.rs [all …]
|
| /external/skia/experimental/documentation/ |
| D | gerrit.md | 57 git push origin @:refs/for/main 64 git push origin @:refs/for/chrome/m57 89 git push origin @:refs/for/main 94 git push origin @:refs/for/main%m=$M 103 git push origin @:refs/for/main%l=Commit-Queue+1,m=$M 121 git config alias.gerrit-push 'push origin @:refs/for/main' 146 git push "$REMOTE" "@:refs/for/${REMOTE_BRANCH}%m=${MESSAGE}" 153 …git config alias.gerrit-push-message '!f(){ git push origin @:refs/for/main%m=$(echo $*|sed "s/[^A… 161 (refs/remotes/*);; 164 local UPSTREAM="${UPSTREAM_FULL#refs/remotes/}" [all …]
|
| /external/perfetto/infra/git_mirror_bot/ |
| D | mirror_aosp_to_ghub_repo.py | 17 Mirrors all the branches (refs/heads/foo) from Gerrit to Github as-is, taking 21 (refs/changes/NN/cl_number/patchset_number) into Github branches 22 (refs/heads/cl_number). This use case was dropped as we moved away from Travis. 73 '+refs/heads/*:refs/remotes/upstream/heads/*') 75 '+refs/tags/*:refs/remotes/upstream/tags/*') 86 # List all refs from both repos and: 91 # stored in a hidden ref (refs/changes) which is NOT under refs/heads. 92 # 3. Keep track of all upstream (AOSP) CLs from the refs/changes namespace 98 m = re.match('refs/' + FILTER_REGEX, ref) 101 current_heads['refs/' + branch] = ref_sha1 [all …]
|
| /external/crosvm/infra/config/generated/ |
| D | cr-buildbucket.cfg | 26 cipd_version: "refs/heads/main" 39 cipd_version: "refs/heads/main" 52 cipd_version: "refs/heads/main" 69 cipd_version: "refs/heads/main" 89 cipd_version: "refs/heads/main" 109 cipd_version: "refs/heads/main" 129 cipd_version: "refs/heads/main" 149 cipd_version: "refs/heads/main" 169 cipd_version: "refs/heads/main" 182 cipd_version: "refs/heads/main" [all …]
|
| /external/libyuv/files/infra/config/ |
| D | cr-buildbucket.cfg | 27 cipd_version: "refs/heads/main" 58 cipd_version: "refs/heads/main" 89 cipd_version: "refs/heads/main" 118 cipd_version: "refs/heads/main" 146 cipd_version: "refs/heads/main" 174 cipd_version: "refs/heads/main" 204 cipd_version: "refs/heads/main" 235 cipd_version: "refs/heads/main" 266 cipd_version: "refs/heads/main" 297 cipd_version: "refs/heads/main" [all …]
|
| /external/openscreen/docs/ |
| D | discovery.md | 11 [DNS-SD public interfaces](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discove… 13 [public discovery layer](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discovery… 24 [public](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discovery/public) 26 [common](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discovery/common) 28 [DNS-SD](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discovery/dnssd) 30 [mDNS](https://chromium.googlesource.com/openscreen/+/refs/heads/master/discovery/mdns) 38 [openscreen::discovery::Config struct](https://chromium.googlesource.com/openscreen/+/refs/heads/ma… 43 [openscreen::discovery::ReportingClient](https://chromium.googlesource.com/openscreen/+/refs/heads/… 51 [openscreen::discovery::DnsSdServicePublisher](https://chromium.googlesource.com/openscreen/+/refs/… 55 [openscreen::discovery::DnsSdServiceWatcher](https://chromium.googlesource.com/openscreen/+/refs/he… [all …]
|
| /external/e2fsprogs/lib/ext2fs/ |
| D | irel_ma.c | 50 struct ext2_inode_reference *refs; member 162 * If max_refs has changed, reallocate the refs array 165 if (ref_ent->refs && ent->max_refs != 170 retval = ext2fs_resize_mem(old_size, size, &ref_ent->refs); 253 if (ref_ent->refs == 0) { 257 sizeof(struct ext2_inode_reference), &ref_ent->refs); 260 memset(ref_ent->refs, 0, size); 267 ref_ent->refs[(unsigned) ref_ent->num++] = *ref; 295 if ((ref_ent->refs == NULL) || 301 *ref = ref_ent->refs[ma->ref_iter++]; [all …]
|
| /external/libxml2/test/schemas/ |
| D | nvdcve_0.xml | 16 <refs> 25 </refs> 70 <refs> 73 </refs> 90 <refs> 96 </refs> 116 <refs> 122 </refs> 141 <refs> 147 </refs> [all …]
|
| /external/cronet/base/win/ |
| D | wmi_unittest.cc | 26 ULONG refs = wmi_services.Reset(); in TEST_F() local 27 EXPECT_EQ(0u, refs); in TEST_F() 34 ULONG refs = wmi_services.Reset(); in TEST_F() local 35 EXPECT_EQ(0u, refs); in TEST_F() 46 ULONG refs = class_method.Reset(); in TEST_F() local 47 EXPECT_EQ(0u, refs); in TEST_F() 48 refs = wmi_services.Reset(); in TEST_F() 49 EXPECT_EQ(0u, refs); in TEST_F()
|
| /external/cronet/third_party/libxml/fuzz/seed_corpus/ |
| D | 299d543a09f90c6aeeb787277cd870affd2a6645 | 16 <refs> 25 </refs> 70 <refs> 73 </refs> 90 <refs> 96 </refs> 116 <refs> 122 </refs> 141 <refs> 147 </refs> [all …]
|
| /external/grpc-grpc-java/core/src/main/java/io/grpc/internal/ |
| D | ManagedChannelOrphanWrapper.java | 36 private static final ConcurrentMap<ManagedChannelReference, ManagedChannelReference> refs = field in ManagedChannelOrphanWrapper 44 this(delegate, refqueue, refs); in ManagedChannelOrphanWrapper() 51 ConcurrentMap<ManagedChannelReference, ManagedChannelReference> refs) { in ManagedChannelOrphanWrapper() argument 53 phantom = new ManagedChannelReference(this, delegate, refqueue, refs); in ManagedChannelOrphanWrapper() 88 private final ConcurrentMap<ManagedChannelReference, ManagedChannelReference> refs; field in ManagedChannelOrphanWrapper.ManagedChannelReference 99 ConcurrentMap<ManagedChannelReference, ManagedChannelReference> refs) { in ManagedChannelReference() argument 107 this.refs = refs; in ManagedChannelReference() 108 this.refs.put(this, this); in ManagedChannelReference() 114 * will be cleared automatically by the JVM, but will not be removed from {@link #refs}. 128 refs.remove(this); in clearInternal()
|
| /external/angle/third_party/abseil-cpp/absl/strings/internal/ |
| D | cord_rep_btree_test.cc | 376 AutoUnref refs; in TEST_P() local 382 refs.RefIf(shared(), leaf); in TEST_P() 394 AutoUnref refs; in TEST_P() local 400 refs.RefIf(shared(), leaf); in TEST_P() 415 AutoUnref refs; in TEST_P() local 421 refs.RefIf(shared(), leaf); in TEST_P() 439 AutoUnref refs; in TEST_P() local 441 refs.RefIf(shared(), leaf); in TEST_P() 453 AutoUnref refs; in TEST_P() local 455 refs.RefIf(shared(), leaf); in TEST_P() [all …]
|
| /external/webrtc/third_party/abseil-cpp/absl/strings/internal/ |
| D | cord_rep_btree_test.cc | 376 AutoUnref refs; in TEST_P() local 382 refs.RefIf(shared(), leaf); in TEST_P() 394 AutoUnref refs; in TEST_P() local 400 refs.RefIf(shared(), leaf); in TEST_P() 415 AutoUnref refs; in TEST_P() local 421 refs.RefIf(shared(), leaf); in TEST_P() 439 AutoUnref refs; in TEST_P() local 441 refs.RefIf(shared(), leaf); in TEST_P() 453 AutoUnref refs; in TEST_P() local 455 refs.RefIf(shared(), leaf); in TEST_P() [all …]
|
| /external/cronet/third_party/abseil-cpp/absl/strings/internal/ |
| D | cord_rep_btree_test.cc | 376 AutoUnref refs; in TEST_P() local 382 refs.RefIf(shared(), leaf); in TEST_P() 394 AutoUnref refs; in TEST_P() local 400 refs.RefIf(shared(), leaf); in TEST_P() 415 AutoUnref refs; in TEST_P() local 421 refs.RefIf(shared(), leaf); in TEST_P() 439 AutoUnref refs; in TEST_P() local 441 refs.RefIf(shared(), leaf); in TEST_P() 453 AutoUnref refs; in TEST_P() local 455 refs.RefIf(shared(), leaf); in TEST_P() [all …]
|
| /external/abseil-cpp/absl/strings/internal/ |
| D | cord_rep_btree_test.cc | 375 AutoUnref refs; in TEST_P() local 381 refs.RefIf(shared(), leaf); in TEST_P() 393 AutoUnref refs; in TEST_P() local 399 refs.RefIf(shared(), leaf); in TEST_P() 414 AutoUnref refs; in TEST_P() local 420 refs.RefIf(shared(), leaf); in TEST_P() 438 AutoUnref refs; in TEST_P() local 440 refs.RefIf(shared(), leaf); in TEST_P() 452 AutoUnref refs; in TEST_P() local 454 refs.RefIf(shared(), leaf); in TEST_P() [all …]
|
| /external/tensorflow/third_party/absl/abseil-cpp/absl/strings/internal/ |
| D | cord_rep_btree_test.cc | 375 AutoUnref refs; in TEST_P() local 381 refs.RefIf(shared(), leaf); in TEST_P() 393 AutoUnref refs; in TEST_P() local 399 refs.RefIf(shared(), leaf); in TEST_P() 414 AutoUnref refs; in TEST_P() local 420 refs.RefIf(shared(), leaf); in TEST_P() 438 AutoUnref refs; in TEST_P() local 440 refs.RefIf(shared(), leaf); in TEST_P() 452 AutoUnref refs; in TEST_P() local 454 refs.RefIf(shared(), leaf); in TEST_P() [all …]
|
| /external/angle/infra/config/generated/ |
| D | cr-buildbucket.cfg | 23 cipd_version: "refs/heads/main" 72 cipd_version: "refs/heads/main" 121 cipd_version: "refs/heads/main" 170 cipd_version: "refs/heads/main" 219 cipd_version: "refs/heads/main" 268 cipd_version: "refs/heads/main" 317 cipd_version: "refs/heads/main" 367 cipd_version: "refs/heads/main" 418 cipd_version: "refs/heads/main" 469 cipd_version: "refs/heads/main" [all …]
|