/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | TypeIndexDiscovery.cpp | 70 SmallVectorImpl<TiReference> &Refs) { in handleMethodOverloadList() argument 86 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleMethodOverloadList() 96 SmallVectorImpl<TiReference> &Refs) { in handleBaseClass() argument 101 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleBaseClass() 106 SmallVectorImpl<TiReference> &Refs) { in handleEnumerator() argument 116 SmallVectorImpl<TiReference> &Refs) { in handleDataMember() argument 122 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleDataMember() 128 SmallVectorImpl<TiReference> &Refs) { in handleOverloadedMethod() argument 133 Refs.push_back({TiRefKind::TypeRef, Offset + 4, 1}); in handleOverloadedMethod() 138 SmallVectorImpl<TiReference> &Refs) { in handleOneMethod() argument [all …]
|
/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/llvm-project/clang/unittests/Basic/ |
D | FileEntryTest.cpp | 59 RefMaps Refs; in TEST() local 60 FileEntryRef R1 = Refs.addFile("1"); in TEST() 61 FileEntryRef R2 = Refs.addFile("2"); in TEST() 62 FileEntryRef R1Also = Refs.addFileAlias("1-also", R1); in TEST() 76 RefMaps Refs; in TEST() local 78 OptionalFileEntryRefDegradesToFileEntryPtr M1 = Refs.addFile("1"); in TEST() 79 OptionalFileEntryRefDegradesToFileEntryPtr M2 = Refs.addFile("2"); in TEST() 82 Refs.addFileAlias("1-also", *M1); in TEST() 94 RefMaps Refs; in TEST() local 95 FileEntryRef R1 = Refs.addFile("1"); in TEST() [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/libvpx/libvpx/vpx_dsp/x86/ |
D | sad4d_avx2.c | 28 const uint8_t *refs[4]; in vpx_sad32x32x4d_avx2() local 31 refs[0] = ref_array[0]; in vpx_sad32x32x4d_avx2() 32 refs[1] = ref_array[1]; in vpx_sad32x32x4d_avx2() 33 refs[2] = ref_array[2]; in vpx_sad32x32x4d_avx2() 34 refs[3] = ref_array[3]; in vpx_sad32x32x4d_avx2() 45 r[0] = _mm256_loadu_si256((const __m256i *)refs[0]); in vpx_sad32x32x4d_avx2() 46 r[1] = _mm256_loadu_si256((const __m256i *)refs[1]); in vpx_sad32x32x4d_avx2() 47 r[2] = _mm256_loadu_si256((const __m256i *)refs[2]); in vpx_sad32x32x4d_avx2() 48 r[3] = _mm256_loadu_si256((const __m256i *)refs[3]); in vpx_sad32x32x4d_avx2() 63 refs[0] += ref_stride; in vpx_sad32x32x4d_avx2() [all …]
|
/external/webp/src/enc/ |
D | backward_references_enc.c | 85 extern void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs); 86 void VP8LClearBackwardRefs(VP8LBackwardRefs* const refs) { in VP8LClearBackwardRefs() argument 87 assert(refs != NULL); in VP8LClearBackwardRefs() 88 if (refs->tail_ != NULL) { in VP8LClearBackwardRefs() 89 *refs->tail_ = refs->free_blocks_; // recycle all blocks at once in VP8LClearBackwardRefs() 91 refs->free_blocks_ = refs->refs_; in VP8LClearBackwardRefs() 92 refs->tail_ = &refs->refs_; in VP8LClearBackwardRefs() 93 refs->last_block_ = NULL; in VP8LClearBackwardRefs() 94 refs->refs_ = NULL; in VP8LClearBackwardRefs() 97 void VP8LBackwardRefsClear(VP8LBackwardRefs* const refs) { in VP8LBackwardRefsClear() argument [all …]
|
/external/angle/infra/config/generated/ |
D | cr-buildbucket.cfg | 23 cipd_version: "refs/heads/master" 40 cipd_version: "refs/heads/master" 57 cipd_version: "refs/heads/master" 74 cipd_version: "refs/heads/master" 91 cipd_version: "refs/heads/master" 109 cipd_version: "refs/heads/master" 127 cipd_version: "refs/heads/master" 145 cipd_version: "refs/heads/master" 163 cipd_version: "refs/heads/master" 181 cipd_version: "refs/heads/master" [all …]
|
/external/skia/experimental/documentation/ |
D | gerrit.md | 57 git push origin @:refs/for/master 64 git push origin @:refs/for/chrome/m57 89 git push origin @:refs/for/master 94 git push origin @:refs/for/master%m=$M 103 git push origin @:refs/for/master%l=Commit-Queue+1,m=$M 121 git config alias.gerrit-push 'push origin @:refs/for/master' 146 git push "$REMOTE" "@:refs/for/${REMOTE_BRANCH}%m=${MESSAGE}" 153 …git config alias.gerrit-push-message '!f(){ git push origin @:refs/for/master%m=$(echo $*|sed "s/[… 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/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/skqp/experimental/documentation/ |
D | gerrit.md | 59 git push origin @:refs/for/master 66 git push origin @:refs/for/chrome/m57 91 git push origin @:refs/for/master 95 git push origin @:refs/for/master%m=this_is_the_patch_set_comment_message 115 git config alias.gerrit-push 'push origin @:refs/for/master' 140 git push "$REMOTE" "@:refs/for/${REMOTE_BRANCH}%m=${MESSAGE}" 147 …git config alias.gerrit-push-message '!f(){ git push origin @:refs/for/master%m=$(echo $*|sed "s/[… 155 (refs/remotes/*);; 158 local UPSTREAM="${UPSTREAM_FULL#refs/remotes/}" 162 echo git push $REMOTE @:refs/for/${REMOTE_BRANCH}%m=${MESSAGE} [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/llvm-project/clang-tools-extra/clangd/index/ |
D | MemIndex.h | 22 // All symbols and refs must outlive this index. 24 MemIndex(SymbolRange &&Symbols, RefRange &&Refs, RelationRange &&Relations) { in MemIndex() argument 27 for (const std::pair<SymbolID, llvm::ArrayRef<Ref>> &R : Refs) in MemIndex() 28 this->Refs.try_emplace(R.first, R.second.begin(), R.second.end()); in MemIndex() 37 MemIndex(SymbolRange &&Symbols, RefRange &&Refs, RelationRange &&Relations, in MemIndex() argument 40 std::forward<RefRange>(Refs), in MemIndex() 48 static std::unique_ptr<SymbolIndex> build(SymbolSlab Symbols, RefSlab Refs, 58 bool refs(const RefsRequest &Req, 70 // A map from symbol ID to symbol refs, support query by IDs. 71 llvm::DenseMap<SymbolID, llvm::ArrayRef<Ref>> Refs; variable
|
/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/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
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 | 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 | 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 | 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/angle/src/ |
D | commit_id.py | 16 create it based on .git/packed-refs 33 refs = fin.read().strip().split('\n') 36 refs = [ref.split(' ') for ref in refs if ref.strip()[0] != '#'] 39 refs = [git_hash for (git_hash, file_path) in refs if file_path == ref_file] 41 assert (len(refs) == 1) 42 git_hash = refs[0] 76 packed_refs_full_path = os.path.join(cwd, '.git', 'packed-refs')
|
/external/llvm-project/libcxx/test/std/localization/locale.categories/category.monetary/locale.moneypunct/locale.moneypunct.members/ |
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() 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 | 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 | 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() 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 | 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() 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()
|