Searched refs:second (Results 51 - 75 of 140) sorted by relevance

123456

/art/compiler/linker/x86/
H A Drelative_patcher_x86_test.cc34 return result.second;
99 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size());
129 dex_cache_arrays_begin_ + kElementOffset - (result.second + anchor_offset);
161 uint32_t diff = kStringOffset - (result.second + anchor_offset);
/art/compiler/linker/x86_64/
H A Drelative_patcher_x86_64_test.cc38 return result.second;
119 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size());
142 dex_cache_arrays_begin_ + kElementOffset - (result.second + kDexCacheLoadCode.size());
166 uint32_t diff = kStringOffset - (result.second + kStringReferenceCode.size());
/art/runtime/
H A Djni_env_ext.cc192 mirror::Object* o = self->DecodeJObject(pair.second);
212 if (self->DecodeJObject(pair.second) == mirror_obj) {
213 std::string monitor_descr = ComputeMonitorDescription(self, pair.second);
240 std::string monitor_descr = ComputeMonitorDescription(self, pair.second);
H A Dtype_lookup_table_test.cc51 ASSERT_EQ(pair.second, class_def_idx);
H A Dimage-inl.h74 return std::make_pair(visitor(methods.first), visitor(methods.second));
H A Dutf.cc188 const uint16_t second = GetTrailingUtf16Char(pair); local
189 if (second != 0) {
190 hash = hash * 31 + second;
H A Dutf_test.cc180 const std::vector<uint8_t>& prefix_out = prefix.second;
183 const std::vector<uint8_t>& test_out = test.second;
186 const std::vector<uint8_t>& suffix_out = suffix.second;
309 static void codePointToSurrogatePair(uint32_t code_point, uint16_t &first, uint16_t &second) { argument
311 second = (code_point & 0x03ff) + 0xdc00;
/art/runtime/lambda/
H A Dbox_table.cc200 const ValueType& value = key_value_pair.second;
231 const ValueType& old_value = key_value_pair.second;
250 key_value_pair.second = ValueType(new_value);
289 item.second = ValueType(); // Also clear the GC root.
/art/compiler/optimizing/
H A Dblock_builder.cc195 return (iterator == try_block_info.end()) ? nullptr : iterator->second;
316 if (GetTryItem(predecessor, try_block_info) != entry.second) {
322 LinkToCatchBlocks(try_entry, code_item_, entry.second, catch_blocks);
328 // Do a second pass over the try blocks and insert exit TryBoundaries where
340 DCHECK_EQ(entry.second, GetTryItem(successor, try_block_info));
348 LinkToCatchBlocks(try_exit, code_item_, entry.second, catch_blocks);
H A Dcode_generator_x86.cc2758 Location second = locations->InAt(1); local
2763 if (second.IsRegister()) {
2765 __ addl(out.AsRegister<Register>(), second.AsRegister<Register>());
2766 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2770 first.AsRegister<Register>(), second.AsRegister<Register>(), TIMES_1, 0));
2772 } else if (second.IsConstant()) {
2773 int32_t value = second.GetConstant()->AsIntConstant()->GetValue();
2781 __ addl(first.AsRegister<Register>(), Address(ESP, second.GetStackIndex()));
2787 if (second.IsRegisterPair()) {
2788 __ addl(first.AsRegisterPairLow<Register>(), second
2875 Location second = locations->InAt(1); local
2991 Location second = locations->InAt(1); local
3181 Location second = locations->InAt(1); local
3363 Location second = locations->InAt(1); local
3489 Location second = locations->InAt(1); local
3701 Location second = locations->InAt(1); local
3896 Location second = locations->InAt(1); local
6612 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator_x86_64.cc2899 Location second = locations->InAt(1); local
2904 if (second.IsRegister()) {
2906 __ addl(out.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>());
2907 } else if (out.AsRegister<Register>() == second.AsRegister<Register>()) {
2911 first.AsRegister<CpuRegister>(), second.AsRegister<CpuRegister>(), TIMES_1, 0));
2913 } else if (second.IsConstant()) {
2916 Immediate(second.GetConstant()->AsIntConstant()->GetValue()));
2919 first.AsRegister<CpuRegister>(), second.GetConstant()->AsIntConstant()->GetValue()));
2923 __ addl(first.AsRegister<CpuRegister>(), Address(CpuRegister(RSP), second.GetStackIndex()));
2929 if (second
3019 Location second = locations->InAt(1); local
3122 Location second = locations->InAt(1); local
3231 Location second = locations->InAt(1); local
3282 Location second = locations->InAt(1); local
3323 Location second = locations->InAt(1); local
3369 Location second = locations->InAt(1); local
3496 Location second = locations->InAt(1); local
3579 Location second = locations->InAt(1); local
3762 Location second = locations->InAt(1); local
3837 Location second = locations->InAt(1); local
6093 Location second = locations->InAt(1); local
[all...]
H A Dinstruction_builder.cc475 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt); local
476 T* comparison = new (arena_) T(first, second, dex_pc);
514 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
515 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
524 HInstruction* second = LoadLocal(instruction.VRegC(), Primitive::kPrimInt); local
525 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
534 HInstruction* second = LoadLocal(instruction.VRegC(), type); local
535 AppendInstruction(new (arena_) HCompare(type, first, second, bias, dex_pc));
544 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt); local
545 AppendInstruction(new (arena_) T(type, first, second, dex_p
554 HInstruction* second = LoadLocal(instruction.VRegB(), type); local
562 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc); local
573 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc); local
1427 HInstruction* second = nullptr; local
[all...]
H A Dinduction_var_analysis.cc161 map_.find(instruction)->second.depth = low;
171 map_.find(x)->second.done = true;
203 return map_.find(instruction)->second.depth;
206 return it->second.done ? global_depth_ : it->second.depth;
474 !HInductionVarAnalysis::InductionEqual(ita->second, itb->second)) {
478 return ita->second;
528 InductionInfo* a = it->second;
563 if (it != cycle_.end() && it->second
[all...]
H A Doptimizing_unit_test.h114 result.replace(pos, p.first.size(), p.second);
/art/runtime/interpreter/mterp/arm/
H A DbinopWide.S28 orrs ip, r2, r3 @ second arg (r2-r3) is zero?
/art/test/098-ddmc/src/
H A DMain.java75 Allocations second = new Allocations(DdmVmInternal.getRecentAllocations());
76 System.out.println("second > first =" + (second.numberOfEntries > first.numberOfEntries));
/art/runtime/base/
H A Dvariant_map.h304 key.ValueDelete(it->second);
345 void* value = kv_pair.second;
439 return reinterpret_cast<const TValue*>(it->second);
450 kv_pair.first->ValueDelete(kv_pair.second);
/art/compiler/debug/
H A Delf_debug_line_writer.h92 if (!seen_addresses.insert(mi->code_address).second) {
196 directory_index = it->second;
213 file_index = it2->second;
H A Delf_debug_writer.cc188 if (it.second != 0) {
193 info.code_address = it.second - header.GetExecutableOffset();
/art/runtime/jit/
H A Djit_code_cache.cc172 if (it.second == method) {
271 if (alloc.ContainsUnsafe(it->second)) {
272 FreeCode(it->first, it->second);
666 ArtMethod* method = it->second;
709 ArtMethod* method = it.second;
768 ArtMethod* method = it.second;
806 DCHECK_EQ(it->second, method)
807 << PrettyMethod(method) << " " << PrettyMethod(it->second) << " " << std::hex << pc;
818 return OatQuickMethodHeader::FromCodePointer(it->second);
990 if (it != osr_code_map_.end() && OatQuickMethodHeader::FromCodePointer(it->second)
[all...]
H A Dprofile_saver.cc193 return &info_it->second;
244 const std::set<std::string>& locations = it.second;
288 const std::set<std::string>& locations = it.second;
497 it->second.insert(code_paths.begin(), code_paths.end());
519 app_code_paths.insert(it.second.begin(), it.second.end());
/art/compiler/linker/
H A Drelative_patcher_test.h155 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta();
199 size_t offset = result.second - compiled_methods_[idx]->CodeDelta();
255 return std::pair<bool, uint32_t>(true, it->second);
H A Dmulti_oat_relative_patcher.h59 return (it != method_offset_map_.map.end()) ? it->second - adjustment_ : 0u;
/art/runtime/hprof/
H A Dhprof.cc539 HprofClassSerialNumber sn = p.second;
557 const size_t id = p.second;
609 const gc::AllocRecordStackTrace* trace = r->second;
612 return result->second;
627 return it->second;
673 HprofStackTraceSerialNumber trace_sn = it.second;
691 __ AddU4(frame_result->second);
701 __ AddU4(class_result->second);
719 __ AddU4(frame_result->second);
832 const gc::AllocRecordStackTrace* trace = it->second
[all...]
/art/runtime/gc/
H A Dtask_processor.cc78 for (auto it = range.first; it != range.second; ++it) {

Completed in 276 milliseconds

123456