/art/dex2oat/linker/arm/ |
D | relative_patcher_arm_base.cc | 210 pending_thunks_.front()->GetPendingOffset() == aligned_offset) { in WriteThunks() 216 if (UNLIKELY(!WriteThunk(out, pending_thunks_.front()->GetCode()))) { in WriteThunks() 219 offset = aligned_offset + pending_thunks_.front()->CodeSize(); in WriteThunks() 230 DCHECK(pending_thunks_.empty() || pending_thunks_.front()->GetPendingOffset() > aligned_offset); in WriteThunks() 303 unreserved_thunks_.front()->MaxNextOffset() >= next_aligned_offset) { in ReserveSpaceInternal() 306 ThunkData* thunk = unreserved_thunks_.front(); in ReserveSpaceInternal() 311 unreserved_thunks_.front()->MaxNextOffset() >= next_aligned_offset) { in ReserveSpaceInternal() 315 thunk = unreserved_thunks_.front(); in ReserveSpaceInternal() 323 DCHECK_LE(thunk_offset - unprocessed_method_call_patches_.front().GetPatchOffset(), in ReserveSpaceInternal() 336 unreserved_thunks_.front()->MaxNextOffset() >= next_aligned_offset); in ReserveSpaceInternal() [all …]
|
/art/libartbase/base/ |
D | transform_array_ref_test.cc | 72 ASSERT_EQ(input.front().value + 1, taref.front()); in TEST() 104 ASSERT_EQ(input.front().value - 1, taref.front()); in TEST() 147 ASSERT_EQ(input.front().value, taref.front()); in TEST() 191 ASSERT_EQ(cinput.front().value, ctaref.front()); in TEST()
|
D | transform_array_ref.h | 114 reference front() { return GetFunction()(base().front()); } in front() function 115 const_reference front() const { return GetFunction()(base().front()); } in front() function
|
D | dchecked_vector.h | 132 reference front() { DCHECK(!empty()); return Base::front(); } in front() function 133 const_reference front() const { DCHECK(!empty()); return Base::front(); } in front() function
|
D | bounded_fifo.h | 57 const T& front() const { in front() function
|
D | array_slice.h | 97 reference front() { in front() function 102 const_reference front() const { in front() function
|
D | array_ref.h | 148 reference front() { in front() function 153 const_reference front() const { in front() function
|
D | intrusive_forward_list.h | 179 reference front() { return *begin(); } in front() function 180 const_reference front() const { return *begin(); } in front() function 369 value_type& value = front(); in reverse()
|
D | intrusive_forward_list_test.cc | 212 ASSERT_EQ(3, ifl.front()); in PushPop() 216 ASSERT_EQ(7, ifl.front()); in PushPop() 220 ASSERT_EQ(3, ifl.front()); in PushPop()
|
/art/compiler/debug/ |
D | elf_debug_writer.cc | 63 … DCHECK_EQ(cu.methods.front()->is_code_address_text_relative, mi.is_code_address_text_relative); in WriteDebugInfo() 88 return a.methods.front() < b.methods.front(); in WriteDebugInfo() 295 symtab->Add(symbols.front(), text); in PackElfFileForJIT()
|
D | elf_debug_line_writer.h | 184 class_name.front() == 'L' && // Type descriptor for a class. in WriteCompilationUnit() 240 int first_line = dex2line_map.front().line_; in WriteCompilationUnit()
|
/art/libdexfile/dex/ |
D | compact_offset_table_test.cc | 47 const size_t before_size = offsets.size() * sizeof(offsets.front()); in TEST()
|
D | dex_file_tracking_registrar.cc | 144 const std::tuple<const void*, size_t, bool>& current_range = range_values_.front(); in SetCurrentRanges()
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 343 (uses_.front().GetUser() == actual_user) && 344 (uses_.front().GetPosition() < position)) { 348 DCHECK(uses_.front().GetPosition() + 1 == position); 357 if (first_range_->GetEnd() == uses_.front().GetPosition()) { 364 DCHECK(env_uses_.empty() || position <= env_uses_.front().GetPosition()); 369 DCHECK(uses_.empty() || position <= uses_.front().GetPosition()); 1226 DCHECK_EQ(user, temp->GetUses().front().GetUser()); in GetTempUser() 1233 return temp->GetUses().front().GetInputIndex(); in GetTempIndex()
|
D | prepare_for_register_allocation.cc | 197 HInstruction* user = condition->GetUses().front().GetUser(); in VisitCondition()
|
D | optimizing_unit_test.h | 154 const size_t code_item_size = data.size() * sizeof(data.front());
|
D | instruction_simplifier_shared.cc | 111 HInstruction* use = mul->GetUses().front().GetUser(); in TryCombineMultiplyAccumulate()
|
/art/test/1949-short-dex-file/ |
D | info.txt | 27 wasn't caught in our other tests (package art is always at the front).
|
/art/runtime/ |
D | thread_pool.cc | 266 Task* task = tasks_.front(); in TryGetTaskLocked()
|
D | intern_table.cc | 281 for (GcRoot<mirror::String>& entry : weak_interns_.tables_.front().set_) { in PromoteWeakToStrong() 285 weak_interns_.tables_.front().set_.clear(); in PromoteWeakToStrong()
|
/art/runtime/gc/ |
D | verification.cc | 225 auto pair = work.front(); in FirstPathFromRootSet()
|
/art/runtime/base/ |
D | timing_logger.cc | 159 return timings_.back().GetTime() - timings_.front().GetTime(); in GetTotalNs()
|
/art/runtime/gc/space/ |
D | image_space.cc | 777 reinterpret_cast32<uint32_t>(boot_image_spaces.front()->Begin()); in InitAppImage() 810 const ImageHeader& primary_header = boot_image_spaces.front()->GetImageHeader(); in InitAppImage() 2761 spaces.front()->Begin(), in DoRelocateSpaces() 2762 spaces.back()->End() - spaces.front()->Begin())); in DoRelocateSpaces() 2789 const ImageHeader& first_header = spaces.front()->GetImageHeader(); in DoRelocateSpaces() 2799 ? static_cast<int64_t>(reinterpret_cast32<uint32_t>(spaces.front()->Begin())) - in DoRelocateSpaces() 2987 ImageSpace* first_space = spaces.front().get(); in MaybeRelocateSpaces() 3010 const ImageHeader& primary_header = spaces.front()->GetImageHeader(); in DeduplicateInternedStrings() 3447 << boot_image_spaces->front(); in LoadFromSystem() 3478 << boot_image_spaces->front(); in LoadFromDalvikCache() [all …]
|
/art/dex2oat/driver/ |
D | compiler_driver_test.cc | 343 dex_file = dex_files.front(); in TEST_F()
|
/art/tools/hiddenapi/ |
D | hiddenapi.cc | 322 CHECK(dex_classes_.empty() || klass.Equals(dex_classes_.front())); in AddDexClass() 335 return dex_classes_.front(); in GetOneDexClass()
|