Searched refs:second (Results 101 - 125 of 140) sorted by relevance

123456

/art/oatdump/
H A Doatdump.cc93 return it->second.get();
260 info.deduped = !seen_offsets_.insert(oat_method.GetCodeOffset()).second;
1949 it->second.bytes += object_bytes_in;
1950 it->second.count += 1;
2114 double average = static_cast<double>(sizes_and_count.second.bytes) /
2115 static_cast<double>(sizes_and_count.second.count);
2116 double percent = PercentOfObjectBytes(sizes_and_count.second.bytes);
2119 descriptor.c_str(), sizes_and_count.second.bytes,
2120 sizes_and_count.second.count, average, percent);
2121 object_bytes_total += sizes_and_count.second
[all...]
/art/runtime/
H A Dart_method.h135 if (input.second != updated.second) {
136 SetImplementationMethod(table_index, pointer_size, updated.second);
H A Delf_file.cc879 if (!result.second) {
881 if ((symbol->st_value != result.first->second->st_value) ||
882 (symbol->st_size != result.first->second->st_size) ||
883 (symbol->st_info != result.first->second->st_info) ||
884 (symbol->st_other != result.first->second->st_other) ||
885 (symbol->st_shndx != result.first->second->st_shndx)) {
896 return it->second;
H A Doat_file.cc667 if (!host_dlopen_handles_.insert(dlopen_handle_).second) {
739 VLOG(oat) << "Need a second run in PreSetup, didn't find with shared_objects_before="
1090 oat_dex_file = primary_it->second;
1099 oat_dex_file = secondary_lb->second; // May be null.
1107 oat_dex_file = canonical_it->second;
H A Dtrace.cc110 idx = it->second;
654 DexIndexBitSet* bit_set = e.second;
861 DexIndexBitSet* bit_set = seen_methods_.find(dex_file)->second;
1031 os << it.first << "\t" << it.second << "\n";
H A Djava_vm_ext.cc226 return (it == libraries_.end()) ? nullptr : it->second;
246 SharedLibrary* const library = lib.second;
282 SharedLibrary* const library = it->second;
/art/compiler/linker/arm64/
H A Drelative_patcher_arm64.cc126 CHECK_EQ(entry.second, aligned_offset + i * kAdrpThunkSize);
183 uint32_t thunk_offset = adrp_thunk_locations_[processed_adrp_thunks_].second;
H A Drelative_patcher_arm64_test.cc110 if (last_result.second != last_method_offset) {
113 CHECK_EQ(last_result.second, last_method_offset + aligned_thunk_size);
121 CHECK_ALIGNED(result.second, 4u);
122 return result.second;
/art/runtime/base/
H A Dhash_set_test.cc275 ASSERT_EQ(it->second, 123);
278 ASSERT_EQ(it->second, 124);
/art/compiler/optimizing/
H A Dgraph_visualizer.cc598 && it->second.start != it->second.end) {
600 disassembler_->Disassemble(output_, it->second.start, it->second.end);
H A Dnodes.h533 constant = cached_constant->second;
1418 * second line indicates the type of the access (in the order of the
3038 HCondition(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3039 : HBinaryOperation(Primitive::kPrimBoolean, first, second, SideEffects::None(), dex_pc) {
3119 HEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3120 : HCondition(first, second, dex_pc) {}
3163 HNotEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3164 : HCondition(first, second, dex_pc) {}
3206 HLessThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3207 : HCondition(first, second, dex_p
3243 HLessThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3280 HGreaterThan(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3317 HGreaterThanOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3354 HBelow(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3394 HBelowOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3434 HAbove(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3474 HAboveOrEqual(HInstruction* first, HInstruction* second, uint32_t dex_pc = kNoDexPc) argument
3519 HCompare(Primitive::Type comparison_type, HInstruction* first, HInstruction* second, ComparisonBias bias, uint32_t dex_pc) argument
[all...]
H A Dcode_generator_mips64.cc448 it.second.start = __ GetAdjustedPosition(it.second.start);
449 it.second.end = __ GetAdjustedPosition(it.second.end);
1851 Location second = locations->InAt(1); local
1852 DCHECK(second.IsConstant());
1856 int64_t imm = Int64FromConstant(second.GetConstant());
1880 Location second = locations->InAt(1); local
1881 DCHECK(second.IsConstant());
1885 int64_t imm = Int64FromConstant(second
1983 Location second = locations->InAt(1); local
2060 Location second = locations->InAt(1); local
[all...]
H A Dcode_generator.h722 auto candidates = iter->second;
725 SlowPathCodeType* other_slow_path = down_cast<SlowPathCodeType*>(it.second);
739 iter->second.emplace_back(std::make_pair(instruction, slow_path));
H A Dcode_generator_mips.cc502 it.second.start = __ GetAdjustedPosition(it.second.start);
503 it.second.end = __ GetAdjustedPosition(it.second.end);
2267 Location second = locations->InAt(1); local
2268 DCHECK(second.IsConstant());
2272 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2291 Location second = locations->InAt(1); local
2292 DCHECK(second.IsConstant());
2296 int32_t imm = second
2340 Location second = locations->InAt(1); local
2392 Location second = locations->InAt(1); local
[all...]
H A Dbounds_check_elimination.cc1198 HBoundsCheck* bounds_check = entry.second;
1400 return it->second;
1508 HBasicBlock* block = it->second;
1637 HBasicBlock* true_block = it1->second;
H A Dcode_generator_arm64.cc2249 // However, the second read barrier may trash `temp`, as it
2521 Location second = locations->InAt(1); local
2522 DCHECK(second.IsConstant());
2526 int64_t imm = Int64FromConstant(second.GetConstant());
2544 Location second = locations->InAt(1); local
2545 DCHECK(second.IsConstant());
2549 int64_t imm = Int64FromConstant(second.GetConstant());
2579 Location second = locations->InAt(1); local
2580 DCHECK(second.IsConstant());
2584 int64_t imm = Int64FromConstant(second
2633 Location second = locations->InAt(1); local
[all...]
/art/runtime/gc/space/
H A Dlarge_object_space_test.cc87 // Free 1 / 2 the allocations the first phase, and all the second phase.
91 size_t request_size = requests.back().second;
/art/runtime/interpreter/mterp/out/
H A Dmterp_mips64.S4224 beqz a1, common_errDivideByZero # is second operand zero?
4260 beqz a1, common_errDivideByZero # is second operand zero?
4296 beqz a1, common_errDivideByZero # is second operand zero?
4332 beqz a1, common_errDivideByZero # is second operand zero?
4368 beqz a1, common_errDivideByZero # is second operand zero?
4404 beqz a1, common_errDivideByZero # is second operand zero?
4440 beqz a1, common_errDivideByZero # is second operand zero?
4476 beqz a1, common_errDivideByZero # is second operand zero?
4512 beqz a1, common_errDivideByZero # is second operand zero?
4548 beqz a1, common_errDivideByZero # is second operan
[all...]
H A Dmterp_arm.S3901 cmp r1, #0 @ is second operand zero?
3942 cmp r1, #0 @ is second operand zero?
3984 cmp r1, #0 @ is second operand zero?
4017 cmp r1, #0 @ is second operand zero?
4053 cmp r1, #0 @ is second operand zero?
4096 cmp r1, #0 @ is second operand zero?
4137 cmp r1, #0 @ is second operand zero?
4178 cmp r1, #0 @ is second operand zero?
4219 cmp r1, #0 @ is second operand zero?
4260 cmp r1, #0 @ is second operan
[all...]
/art/compiler/driver/
H A Dcompiler_driver.cc428 CompiledMethod::ReleaseSwapAllocatedCompiledMethod(this, pair.second);
579 // This is the second pass when we dex-to-dex compile previously marked methods.
1114 const DexFile* dex_file = exception_type.second;
1156 if (!result.second) { // Previously inserted.
1543 ref->second = reference_class->GetDexClassDefIndex();
1608 can_link = is_put ? fast_path.second : fast_path.first;
2418 // sub-class' lock. While on a second thread the sub-class is initialized (holding its lock)
2754 compiled_method = it->second;
2769 CHECK(it->second != nullptr);
2770 return it->second;
[all...]
/art/compiler/
H A Dimage_writer.h97 const ImageInfo& image_info = GetImageInfo(oat_it->second);
102 it->second + offset);
/art/compiler/debug/
H A Delf_debug_loc_writer.h125 const uint32_t stack_map_index = it->second;
/art/patchoat/
H A Dpatchoat.cc283 space_to_memmap_map.find(space)->second.get(),
288 timings)).first->second;
321 PatchOat& p = space_to_patchoat_map.find(space)->second;
329 bool skip_patching_oat = space_to_skip_patching_map.find(space)->second;
H A Dpatchoat.h157 return reinterpret_cast<T*>(space_map_->find(image_space)->second->Begin() + heap_off);
/art/runtime/gc/
H A Dheap.cc646 // Retry a second time with no specified request begin.
2388 uintptr_t pos = it->second;
3100 accounting::ModUnionTable* mod_union_table = table_pair.second;
3105 accounting::RememberedSet* remembered_set = table_pair.second;
3269 return it->second;
3277 return it->second;
3358 accounting::ModUnionTable* mod_union_table = table_pair.second;
3889 // The second watermark is higher than the gc watermark. If you hit this it means you are
3966 delete it->second;

Completed in 512 milliseconds

123456