/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 | 88 reference front() { in front() function 93 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
|
/art/compiler/debug/ |
D | elf_debug_writer.cc | 62 … DCHECK_EQ(cu.methods.front()->is_code_address_text_relative, mi.is_code_address_text_relative); in WriteDebugInfo() 87 return a.methods.front() < b.methods.front(); in WriteDebugInfo() 290 symtab->Add(symbols.front(), text); in PackElfFileForJIT()
|
D | elf_debug_line_writer.h | 186 class_name.front() == 'L' && // Type descriptor for a class. in WriteCompilationUnit() 242 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/compiler/utils/ |
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/runtime/ |
D | thread_pool.cc | 252 Task* task = tasks_.front(); in TryGetTaskLocked()
|
/art/runtime/gc/ |
D | verification.cc | 225 auto pair = work.front(); in FirstPathFromRootSet()
|
/art/runtime/gc/space/ |
D | image_space.cc | 1435 << boot_image_spaces->front(); in LoadFromSystem() 1462 << boot_image_spaces->front(); in LoadFromDalvikCache() 1572 spaces.front()->Begin(), in DoRelocateSpaces() 1573 spaces.back()->End() - spaces.front()->Begin())); in DoRelocateSpaces() 1669 const ImageSpace* space = spaces.front().get(); in DoRelocateSpaces() 1725 ImageSpace* first_space = spaces.front().get(); in MaybeRelocateSpaces() 2284 const ImageHeader& primary_header = image_spaces.front()->GetImageHeader(); in GetBootClassPathChecksums() 2306 !DexFileLoader::IsMultiDexLocation(boot_class_path_tail.front()->GetLocation().c_str())); in GetBootClassPathChecksums()
|
/art/runtime/base/ |
D | timing_logger.cc | 159 return timings_.back().GetTime() - timings_.front().GetTime(); in GetTotalNs()
|
/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()
|
/art/dex2oat/ |
D | verifier_deps_test.cc | 119 primary_dex_file_ = dex_files_.front(); in LoadDexFile() 483 decoded_deps.GetDexFileDeps(*second_dex_files.front()); in RunValidation()
|