/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/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() 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() 192 dec->refs[target->valid_ref].last_used = seq; in nouveau_vp3_handle_references() [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/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
D | negative_sign.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 46 explicit Fwf(std::size_t refs = 0) in Fwf() argument 47 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 54 explicit Fwt(std::size_t refs = 0) in Fwt() argument 55 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | frac_digits.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | curr_symbol.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | positive_sign.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | grouping.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | thousands_sep.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | decimal_point.pass.cpp | 29 explicit Fnf(std::size_t refs = 0) in Fnf() argument 30 : std::moneypunct<char, false>(refs) {} in Fnf() 37 explicit Fnt(std::size_t refs = 0) in Fnt() argument 38 : std::moneypunct<char, true>(refs) {} in Fnt() 45 explicit Fwf(std::size_t refs = 0) in Fwf() argument 46 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 53 explicit Fwt(std::size_t refs = 0) in Fwt() argument 54 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
/external/cronet/buildtools/third_party/libc++/trunk/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
D | frac_digits.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | negative_sign.pass.cpp | 31 explicit Fnf(std::size_t refs = 0) in Fnf() argument 32 : std::moneypunct<char, false>(refs) {} in Fnf() 39 explicit Fnt(std::size_t refs = 0) in Fnt() argument 40 : std::moneypunct<char, true>(refs) {} in Fnt() 48 explicit Fwf(std::size_t refs = 0) in Fwf() argument 49 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 56 explicit Fwt(std::size_t refs = 0) in Fwt() argument 57 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | positive_sign.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | curr_symbol.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | grouping.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | decimal_point.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
D | thousands_sep.pass.cpp | 30 explicit Fnf(std::size_t refs = 0) in Fnf() argument 31 : std::moneypunct<char, false>(refs) {} in Fnf() 38 explicit Fnt(std::size_t refs = 0) in Fnt() argument 39 : std::moneypunct<char, true>(refs) {} in Fnt() 47 explicit Fwf(std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct<wchar_t, false>(refs) {} in Fwf() 55 explicit Fwt(std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct<wchar_t, true>(refs) {} in Fwt()
|
/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/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/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() 128 refs.remove(this); in clearInternal()
|
/external/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct.byname/ |
D | frac_digits.pass.cpp | 31 explicit Fnf(const std::string& nm, std::size_t refs = 0) in Fnf() argument 32 : std::moneypunct_byname<char, false>(nm, refs) {} in Fnf() 39 explicit Fnt(const std::string& nm, std::size_t refs = 0) in Fnt() argument 40 : std::moneypunct_byname<char, true>(nm, refs) {} in Fnt() 47 explicit Fwf(const std::string& nm, std::size_t refs = 0) in Fwf() argument 48 : std::moneypunct_byname<wchar_t, false>(nm, refs) {} in Fwf() 55 explicit Fwt(const std::string& nm, std::size_t refs = 0) in Fwt() argument 56 : std::moneypunct_byname<wchar_t, true>(nm, refs) {} in Fwt()
|
/external/curl/scripts/ |
D | release-notes.pl | 63 my @refs; # [number] = [URL] 72 $refs[$1] = $2; 78 for my $r (1 .. $#refs) { 84 return $#refs + 1; 174 $refs[$r] = $ref; 223 for my $n (1 .. $#refs) { 224 my $r = $refs[$n]; 239 for my $r (1 .. $#refs) {
|