Home
last modified time | relevance | path

Searched refs:entries (Results 1 – 20 of 20) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
DAnnotationSetItem.java23 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/
Dprofiling_info.cc28 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()
Dprofiling_info.h133 ProfilingInfo(ArtMethod* method, const std::vector<uint32_t>& entries);
Djit_code_cache.h218 const std::vector<uint32_t>& entries,
300 const std::vector<uint32_t>& entries)
Djit_code_cache.cc1535 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/
Dhidden_api.cc47 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()
Dhidden_api.h77 static void FillList(const char* filename, std::set<std::string>& entries);
/art/test/098-ddmc/
Dexpected.txt2 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/
Dinfo.txt1 We used to put wrong entries in the dex cache, which would
/art/compiler/debug/dwarf/
Dheaders.h128 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/
Dreference_table.cc125 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()
Dreference_table.h60 static void Dump(std::ostream& os, Table& entries)
Dindirect_reference_table.cc463 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/
DOptions.java286 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/
Dmterp.cc67 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/
Dinterpreter_common.h477 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/
DREADME.txt110 Fix page loading performance by showing a limited number of entries by default.
/art/imgdiag/
Dimgdiag.cc1031 const std::set<T*>& entries = in DiffDirtyEntries() local
1035 for (T* entry : entries) { in DiffDirtyEntries()
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S2052 # Iterate over the entries of the ImtConflictTable.
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S2159 # Iterate over the entries of the ImtConflictTable.