Searched refs:back (Results 1 - 25 of 59) sorted by relevance

123

/art/runtime/
H A Dclass_table.cc59 auto existing_it = classes_.back().FindWithHash(descriptor, hash);
60 if (kIsDebugBuild && existing_it == classes_.back().end()) {
91 return classes_.back().Size();
107 classes_.back().Insert(GcRoot<mirror::Class>(klass));
111 classes_.back().Insert(GcRoot<mirror::Class>(klass));
116 classes_.back().InsertWithHash(GcRoot<mirror::Class>(klass), hash);
168 // Combine all the class sets in case there are multiple, also adjusts load factor back to
H A Dintern_table.cc407 // Insert at the front since we add new interns into the back.
426 table_to_write = &tables_.back();
472 tables_.back().Insert(GcRoot<mirror::String>(s));
531 tables_.back().SetLoadFactor(runtime->GetHashTableMinLoadFactor(),
H A Djni_env_ext.cc110 local_ref_cookie = stacked_local_ref_cookies.back();
H A Doat_file_assistant_test.cc189 ASSERT_TRUE(image_reservation_.back().get() != nullptr) << error_msg;
191 reinterpret_cast<void*>(image_reservation_.back()->Begin()) << "-" <<
192 reinterpret_cast<void*>(image_reservation_.back()->End());
800 // Things aren't relocated, so it should fall back to interpreted.
1005 && target_path.back() == cwd_path.back()) {
1260 // * Test class linker falls back to unquickened dex for DexNoOat
1261 // * Test class linker falls back to unquickened dex for MultiDexNoOat
/art/runtime/base/
H A Dtiming_logger.cc153 return timings_.back().GetTime() - timings_.front().GetTime();
173 size_t open_idx = open_stack.back();
184 ret.data_[open_stack.back()].exclusive_time -= time;
191 << timings_[open_stack.back()].GetName() << " at index " << open_stack.back();
H A Ddchecked_vector.h29 // DCHECK()s for the subscript operator, front(), back(), pop_back(),
133 // Element access: front(), back(). Check not empty.
136 reference back() { DCHECK(!empty()); return Base::back(); } function in class:art::dchecked_vector
137 const_reference back() const { DCHECK(!empty()); return Base::back(); } function in class:art::dchecked_vector
H A Dhistogram-inl.h223 DCHECK_EQ(out_data->freq_.back(), sample_size_);
224 DCHECK_LE(std::abs(out_data->perc_.back() - 1.0), 0.001);
/art/compiler/optimizing/
H A Dpretty_printer.h81 PrintInt(predecessors.back()->GetBlockId());
90 PrintInt(successors.back()->GetBlockId());
H A Dssa_phi_elimination.cc68 HPhi* phi = worklist_.back();
138 HPhi* phi = worklist_.back();
H A Ddead_code_elimination.cc33 HBasicBlock* block = worklist.back();
/art/runtime/interpreter/mterp/arm/
H A Dfooter.S81 * exception, handle it. Otherwise, roll back and retry with the reference
87 beq MterpFallback @ If not, fall back to reference interpreter.
99 beq MterpExceptionReturn @ no local catch, back to caller.
/art/runtime/interpreter/mterp/mips/
H A Dfooter.S81 * exception, handle it. Otherwise, roll back and retry with the reference
86 beqz a0, MterpFallback # If exception, fall back to reference interpreter.
97 beqz v0, MterpExceptionReturn # no local catch, back to caller.
/art/runtime/interpreter/mterp/mips64/
H A Dfooter.S39 * exception, handle it. Otherwise, roll back and retry with the reference
44 beqzc a0, MterpFallback # If not, fall back to reference interpreter.
57 beqzc v0, MterpExceptionReturn # no local catch, back to caller.
/art/compiler/debug/
H A Delf_debug_loc_writer.h160 variable_locations.back().reg_lo == reg_lo &&
161 variable_locations.back().reg_hi == reg_hi &&
162 variable_locations.back().high_pc == low_pc) {
164 variable_locations.back().high_pc = high_pc;
H A Delf_debug_writer.cc58 ElfCompilationUnit& cu = compilation_units.back();
/art/compiler/linker/arm/
H A Drelative_patcher_arm_base.cc149 // Process as many patches as possible, stop only on unresolved targets or calls too far back.
153 DCHECK(thunk_locations_.empty() || thunk_locations_.back() <= patch_offset);
165 patch_offset - thunk_locations_.back() > max_negative_displacement_) {
176 // When calling back, check if we have a thunk that's closer than the actual target.
178 target_offset = std::max(target_offset, thunk_locations_.back());
/art/compiler/utils/
H A Darray_ref.h155 reference back() { function in class:art::ArrayRef
160 const_reference back() const { function in class:art::ArrayRef
/art/runtime/gc/space/
H A Dlarge_object_space_test.cc90 mirror::Object* obj = requests.back().first;
91 size_t request_size = requests.back().second;
/art/compiler/
H A Dcfi_test.h93 while (!line.empty() && line.back() == ' ') {
H A Dimage_test.cc206 elf_writers.back()->Start();
227 rodata.back(),
479 EXPECT_LT(image_sizes.back(), image_sizes_extra.back());
H A Dcompiled_method.h132 DCHECK_GE(elem.from_, this->back().from_);
135 if (elem.to_ == this->back().to_) {
H A Dcommon_compiler_test.cc69 std::vector<uint8_t>* chunk = &header_code_and_maps_chunks_.back();
H A Delf_builder.h124 CHECK(sections.empty() || sections.back()->finished_);
130 if (header_.sh_flags != sections.back()->header_.sh_flags) {
855 Elf_Phdr& prev = phdrs.back();
/art/compiler/debug/dwarf/
H A Ddwarf_test.h85 // Read the elf file back using objdump.
100 if (str.back() == '\n') {
/art/compiler/dex/
H A Dverified_method.cc250 DCHECK(safe_cast_set_.empty() || safe_cast_set_.back() < dex_pc);

Completed in 9180 milliseconds

123