/art/tools/dexfuzz/src/dexfuzz/rawdex/ |
D | AnnotationSetItem.java | 23 public AnnotationOffItem[] entries; field in AnnotationSetItem 30 entries = new AnnotationOffItem[size]; in read() 32 (entries[i] = new AnnotationOffItem()).read(file); in read() 41 for (AnnotationOffItem annotationOffItem : entries) { in write()
|
/art/runtime/jit/ |
D | profiling_info.cc | 28 ProfilingInfo::ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries) in ProfilingInfo() argument 29 : number_of_inline_caches_(entries.size()), in ProfilingInfo() 37 cache_[i].dex_pc_ = entries[i]; in ProfilingInfo() 46 std::vector<uint32_t> entries; in Create() local 55 entries.push_back(inst.DexPc()); in Create() 68 return code_cache->AddProfilingInfo(self, method, entries, retry_allocation) != nullptr; in Create()
|
D | profiling_info.h | 133 ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries);
|
D | jit_code_cache.h | 218 const std::vector<uint32_t>& entries, 300 const std::vector<uint32_t>& entries)
|
D | jit_code_cache.cc | 1535 const std::vector<uint32_t>& entries, in AddProfilingInfo() argument 1544 info = AddProfilingInfoInternal(self, method, entries); in AddProfilingInfo() 1550 info = AddProfilingInfoInternal(self, method, entries); in AddProfilingInfo() 1556 info = AddProfilingInfoInternal(self, method, entries); in AddProfilingInfo() 1564 const std::vector<uint32_t>& entries) { in AddProfilingInfoInternal() argument 1566 sizeof(ProfilingInfo) + sizeof(InlineCache) * entries.size(), in AddProfilingInfoInternal() 1579 info = new (data) ProfilingInfo(method, entries); in AddProfilingInfoInternal()
|
/art/tools/veridex/ |
D | hidden_api.cc | 47 void HiddenApi::FillList(const char* filename, std::set<std::string>& entries) { in FillList() argument 54 entries.insert(str); in FillList() 58 entries.insert(str.substr(0, pos)); in FillList() 62 entries.insert(str.substr(0, pos)); in FillList() 67 entries.insert(str.substr(0, pos)); in FillList()
|
D | hidden_api.h | 77 static void FillList(const char* filename, std::set<std::string>& entries);
|
/art/test/098-ddmc/ |
D | expected.txt | 2 empty=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: … 14 reset=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries: … 23 goodbye=Allocations[message header len: 15 entry header len: 9 stack frame len: 8 number of entries…
|
/art/test/666-dex-cache-itf/ |
D | info.txt | 1 We used to put wrong entries in the dex cache, which would
|
/art/compiler/debug/dwarf/ |
D | headers.h | 128 const DebugInfoEntryWriter<Vector>& entries, in WriteDebugInfoCU() argument 139 writer.PushUint8(entries.Is64bit() ? 8 : 4); in WriteDebugInfoCU() 142 writer.PushData(entries.data()); in WriteDebugInfoCU() 145 for (uintptr_t patch_location : entries.GetPatchLocations()) { in WriteDebugInfoCU()
|
/art/runtime/ |
D | reference_table.cc | 125 void ReferenceTable::Dump(std::ostream& os, Table& entries) { in Dump() argument 158 if (entries.empty()) { in Dump() 165 size_t count = entries.size(); in Dump() 173 ObjPtr<mirror::Object> ref = entries[idx].Read(); in Dump() 263 for (GcRoot<mirror::Object>& root : entries) { in Dump()
|
D | reference_table.h | 60 static void Dump(std::ostream& os, Table& entries)
|
D | indirect_reference_table.cc | 463 ReferenceTable::Table entries; in Dump() local 468 entries.push_back(GcRoot<mirror::Object>(obj)); in Dump() 471 ReferenceTable::Dump(os, entries); in Dump()
|
/art/tools/dexfuzz/src/dexfuzz/ |
D | Options.java | 286 String[] entries = line.split(" "); in setupMutationLikelihoodTable() local 287 String name = entries[0].toLowerCase(); in setupMutationLikelihoodTable() 288 int likelihood = Integer.parseInt(entries[1]); in setupMutationLikelihoodTable()
|
/art/runtime/interpreter/mterp/ |
D | mterp.cc | 67 const int32_t* entries; in MterpDoSparseSwitch() local 92 entries = keys + size; in MterpDoSparseSwitch() 109 return entries[mid]; in MterpDoSparseSwitch() 144 const int32_t* entries = reinterpret_cast<const int32_t*>(switchData); in MterpDoPackedSwitch() local 145 return entries[index]; in MterpDoPackedSwitch()
|
/art/runtime/interpreter/ |
D | interpreter_common.h | 477 const int32_t* entries = keys + size; in DoSparseSwitch() local 478 DCHECK_ALIGNED(entries, 4); in DoSparseSwitch() 489 return entries[mid]; in DoSparseSwitch()
|
/art/tools/ahat/ |
D | README.txt | 110 Fix page loading performance by showing a limited number of entries by default.
|
/art/imgdiag/ |
D | imgdiag.cc | 1031 const std::set<T*>& entries = in DiffDirtyEntries() local 1035 for (T* entry : entries) { in DiffDirtyEntries()
|
/art/runtime/arch/mips64/ |
D | quick_entrypoints_mips64.S | 2052 # Iterate over the entries of the ImtConflictTable.
|
/art/runtime/arch/mips/ |
D | quick_entrypoints_mips.S | 2159 # Iterate over the entries of the ImtConflictTable.
|