Home
last modified time | relevance | path

Searched refs:second (Results 26 – 50 of 210) sorted by relevance

123456789

/art/test/504-regression-baseline-entry/smali/
DTest.smali22 goto :second
27 :second
/art/test/008-exceptions/
Dexpected.txt1 Got an NPE: second throw
2 java.lang.NullPointerException: second throw
/art/tools/dexfuzz/src/dexfuzz/program/
DCodeTranslator.java336 MTryBlock second = mutatableCode.mutatableTries.get(i + 1); in updateTryBlocks() local
339 if (first.endInsn.location > second.startInsn.location) { in updateTryBlocks()
343 Log.debug("2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn); in updateTryBlocks()
347 MInsn newInsn = second.startInsn; in updateTryBlocks()
353 second.startInsn = newInsn; in updateTryBlocks()
355 Log.debug("Now 2nd TryBlock goes from " + second.startInsn + " to " + second.endInsn); in updateTryBlocks()
543 public int compare(MInsn first, MInsn second) { in alignDataInstructions()
544 if (first.location < second.location) { in alignDataInstructions()
546 } else if (first.location > second.location) { in alignDataInstructions()
/art/libartbase/base/
Dmem_map.cc72 if (it->second == &map) { in GetGMapsEntry()
84 MemMap* map = it->second; in operator <<()
160 MemMap* const map = pair.second; in ContainedWithinExistingMap()
652 DCHECK_EQ(this_it->second, this); in swap()
653 this_it->second = &other; in swap()
657 DCHECK_EQ(other_it->second, &other); in swap()
658 other_it->second = this; in swap()
917 MemMap* map = it->second; in DumpMapsLocked()
930 it->second->GetProtect() == map->GetProtect() && in DumpMapsLocked()
931 it->second->GetName() == map->GetName() && in DumpMapsLocked()
[all …]
/art/libelffile/dwarf/
Ddebug_abbrev_writer.h70 uint32_t abbrev_code = it.first->second; in EndAbbrev()
71 if (UNLIKELY(it.second)) { // Inserted new entry. in EndAbbrev()
/art/runtime/gc/
Dverification.cc183 if (ref != nullptr && visited_->insert(ref).second) { in Visit()
203 if (obj != nullptr && visited_->insert(obj).second) { in VisitRoot()
227 return pair.second; in FirstPathFromRootSet()
234 oss << pair.second << " -> " << obj << "(" << obj->PrettyTypeOf() << ")." << pair2.second; in FirstPathFromRootSet()
/art/test/596-monitor-inflation/
Dexpected.txt5 Finished second check
/art/test/519-bound-load-class/
Dinfo.txt3 as second input.
/art/test/451-regression-add-float/
Dinfo.txt1 Tests a regression in float addition for optimizing. The second argument
/art/runtime/gc/collector/
Dgarbage_collector.cc115 if (it->second == next_it->first) { in ExtractRssFromMincore()
116 it->second = next_it->second; in ExtractRssFromMincore()
122 size_t length = static_cast<uint8_t*>(it->second) - static_cast<uint8_t*>(it->first); in ExtractRssFromMincore()
128 size_t length = static_cast<uint8_t*>(it.second) - static_cast<uint8_t*>(it.first); in ExtractRssFromMincore()
137 << ", 0x" << it.second << std::dec << ") failed: " << strerror(errno); in ExtractRssFromMincore()
/art/tools/veridex/
Dresolver.cc35 type_infos_[type_idx] = *existing->second; in Run()
98 existing->second->GetKind(), last_array + 1, existing->second->GetClassDef()); in GetVeriClass()
105 cls = existing->second; in GetVeriClass()
117 const DexFile& dex_file = resolver_it->second->dex_file_; in GetResolverOf()
122 return resolver_it->second; in GetResolverOf()
Dhidden_api.cc65 } else if (membership.GetMaxAllowedSdkVersion() < it->second.GetMaxAllowedSdkVersion()) { in AddSignatureToApiList()
67 it->second = membership; in AddSignatureToApiList()
Dhidden_api_finder.cc186 HiddenApiFinder::DumpReferences(os, pair.second); in Dump()
204 HiddenApiFinder::DumpReferences(os, pair.second); in Dump()
248 if (pair.second > 1) { in DumpReferences()
249 os << " (" << pair.second << " occurrences)"; in DumpReferences()
/art/openjdkjvmti/
Djvmti_weak_table-inl.h111 *tag = it->second; in RemoveLocked()
155 it->second = new_tag; in SetLocked()
174 DCHECK(insert_it.second); in SetLocked()
229 T tag = it->second; in UpdateTableWith()
355 if (tags[i] == pair.second) {
372 selected_tags.Pushback(pair.second);
395 if (tag == pair.second) {
Dti_field.cc86 DCHECK(env->access_watched_fields.find(it.second) != env->access_watched_fields.end()); in VisitReflectiveTargets()
87 env->access_watched_fields.erase(it.second); in VisitReflectiveTargets()
99 DCHECK(env->modify_watched_fields.find(it.second) != env->modify_watched_fields.end()); in VisitReflectiveTargets()
100 env->modify_watched_fields.erase(it.second); in VisitReflectiveTargets()
281 if (!res_pair.second) { in SetFieldModificationWatch()
315 if (!res_pair.second) { in SetFieldAccessWatch()
/art/runtime/
Dtransaction.cc59 field_values_count += it.second.Size(); in ~Transaction()
64 array_values_count += it.second.Size(); in ~Transaction()
258 it->second.LogValue(index, value); in RecordWriteArray()
315 it.second.Undo(it.first); in UndoObjectModifications()
324 it.second.Undo(it.first); in UndoArrayModifications()
362 it.second.VisitRoots(visitor); in VisitObjectLogs()
374 mirror::Object* new_root = pair.second; in VisitObjectLogs()
378 object_logs_.emplace(new_root, std::move(old_root_it->second)); in VisitObjectLogs()
401 mirror::Array* new_root = pair.second; in VisitArrayLogs()
405 array_logs_.emplace(new_root, std::move(old_root_it->second)); in VisitArrayLogs()
[all …]
/art/compiler/dex/
Dverification_results.cc75 existing = it->second; in ProcessVerifiedMethod()
106 return (it != verified_methods_.end()) ? it->second : nullptr; in GetVerifiedMethod()
158 CHECK(atomic_verified_methods_.Insert(ref, nullptr, it->second) == in AddDexFile()
/art/compiler/optimizing/
Dcode_generator_x86_64.cc3354 Location second = locations->InAt(1); in VisitAdd() local
3359 if (second.IsRegister()) { in VisitAdd()
3361 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>()); in VisitAdd()
3362 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) { in VisitAdd()
3366 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0)); in VisitAdd()
3368 } else if (second.IsConstant()) { in VisitAdd()
3371 Immediate(second.GetConstant()->AsIntConstant()->GetValue())); in VisitAdd()
3374 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue())); in VisitAdd()
3378 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex())); in VisitAdd()
3384 if (second.IsRegister()) { in VisitAdd()
[all …]
/art/runtime/verifier/
Dregister_line-inl.h214 uint32_t depths = it->second ^ (1 << depth); in ClearRegToLockDepth()
216 it->second = depths; in ClearRegToLockDepth()
223 if ((pair.second & mask) != 0) { in ClearRegToLockDepth()
225 pair.second ^= mask; in ClearRegToLockDepth()
/art/libdexfile/dex/
Dutf_test.cc182 const std::vector<uint8_t>& prefix_out = prefix.second; in TEST_F()
185 const std::vector<uint8_t>& test_out = test.second; in TEST_F()
188 const std::vector<uint8_t>& suffix_out = suffix.second; in TEST_F()
311 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { in codePointToSurrogatePair() argument
313 second = (code_point & 0x03ff) + 0xdc00; in codePointToSurrogatePair()
/art/libdexfile/external/
Ddex_file_ext.cc111 if (it != method_cache_.end() && dex_offset >= it->second.offset) { in GetMethodCacheEntryForOffset()
112 return &it->second; in GetMethodCacheEntryForOffset()
130 return &res.first->second; in GetMethodCacheEntryForOffset()
161 if (std::prev(it)->second == it->second) { in GetClassDefIndex()
178 *class_def_index = it->second; in GetClassDefIndex()
/art/tools/dexanalyze/
Ddexanalyze_strings.cc253 while (pair.second->Savings() != pair.first) { in PopRealTop()
254 pair.first = pair.second->Savings(); in PopRealTop()
287 if (pair.second != this && pair.first > 0) { in ExtractPrefixes()
289 uint32_t count = pair.second->count_; in ExtractPrefixes()
290 pair.second->chosen_ = true; in ExtractPrefixes()
291 for (MatchTrie* cur = pair.second->parent_; cur != this; cur = cur->parent_) { in ExtractPrefixes()
297 for (MatchTrie* cur = pair.second->parent_; cur != this; cur = cur->parent_) { in ExtractPrefixes()
300 prefixes.emplace(pair.first, pair.second); in ExtractPrefixes()
311 ret.push_back(pair.second->GetString()); in ExtractPrefixes()
574 os << pair.first << " : " << pair.second << "\n"; in Dump()
/art/runtime/jit/
Dprofile_saver.cc110 delete it.second; in ~ProfileSaver()
451 ProfileCompilationInfo* cached_info = info_it->second; in FetchAndCacheResolvedClassesAndMethods()
453 const std::set<std::string>& locations = it.second; in FetchAndCacheResolvedClassesAndMethods()
459 const MethodReferenceCollection::IndexVector& indices = pair.second; in FetchAndCacheResolvedClassesAndMethods()
478 const MethodReferenceCollection::IndexVector& indices = pair.second; in FetchAndCacheResolvedClassesAndMethods()
495 const TypeReferenceCollection::IndexVector& classes = pair.second; in FetchAndCacheResolvedClassesAndMethods()
545 const std::set<std::string>& locations = it.second; in ProcessProfilingInfo()
591 if (!info.MergeWith(*(profile_cache_it->second))) { in ProcessProfilingInfo()
629 ProfileCompilationInfo *cached_info = profile_cache_it->second; in ProcessProfilingInfo()
872 it->second.insert(code_paths_and_filenames.begin(), code_paths_and_filenames.end()); in AddTrackedLocationsToMap()
[all …]
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc201 ThunkData* data = &entry.second; in WriteThunks()
242 const ThunkData& data = entry.second; in GenerateThunkDebugInfo()
248 const ThunkData& data = entry.second; in GenerateThunkDebugInfo()
370 const ThunkData& data = it->second; in GetThunkTargetOffset()
416 method_call_thunk_ = &it->second; in ProcessPatches()
433 AddUnreservedThunk(&it->second); in ProcessPatches()
435 old_data = &lb->second; in ProcessPatches()
504 uint32_t target_offset = result.second - CompiledCode::CodeDelta(instruction_set_); in ResolveMethodCalls()
/art/test/302-float-conversion/
Dinfo.txt5 The second test checks the Load hoisting optimization for float pointing conversion.

123456789