Home
last modified time | relevance | path

Searched refs:SubArray (Results 1 – 18 of 18) sorted by relevance

/art/libartbase/base/
Darray_slice.h117 ArraySlice<T> SubArray(size_type pos) { in SubArray() function
118 return SubArray(pos, size() - pos); in SubArray()
121 ArraySlice<const T> SubArray(size_type pos) const { in SubArray() function
122 return SubArray(pos, size() - pos); in SubArray()
125 ArraySlice<T> SubArray(size_type pos, size_type length) { in SubArray() function
131 ArraySlice<const T> SubArray(size_type pos, size_type length) const { in SubArray() function
Darray_ref.h171 ArrayRef SubArray(size_type pos) { in SubArray() function
172 return SubArray(pos, size() - pos); in SubArray()
175 ArrayRef<const T> SubArray(size_type pos) const { in SubArray() function
176 return SubArray(pos, size() - pos); in SubArray()
179 ArrayRef SubArray(size_type pos, size_type length) { in SubArray() function
185 ArrayRef<const T> SubArray(size_type pos, size_type length) const { in SubArray() function
Dtransform_array_ref.h120 TransformArrayRef SubArray(size_type pos) { in SubArray() function
123 TransformArrayRef SubArray(size_type pos) const { in SubArray() function
126 TransformArrayRef SubArray(size_type pos, size_type length) const { in SubArray() function
/art/dex2oat/
Ddex2oat_image_test.cc191 ArrayRef<const std::string>(libcore_dex_files).SubArray(/*pos=*/ 0u, /*length=*/ 2u); in TEST_F()
280 ArrayRef<const std::string> head_dex_files = full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ 2u); in TEST_F()
284 full_bcp.SubArray(/*pos=*/ 0u, /*length=*/ total_dex_files - 1u); in TEST_F()
285 ArrayRef<const std::string> mid_dex_files = mid_bcp.SubArray(/*pos=*/ 2u); in TEST_F()
288 full_bcp.SubArray(/*pos=*/ total_dex_files - 1u, /*length=*/ 1u); in TEST_F()
294 mid_dex_files.SubArray(/*pos=*/ 0u, /*length=*/ 1u), in TEST_F()
375 ArrayRef<const std::string> single_dex_files = full_bcp.SubArray(/*pos=*/ head_dex_files.size()); in TEST_F()
389 single_dex_files.SubArray(/*pos=*/ 0u, /*length=*/ 1u), in TEST_F()
570 single_dex_files.SubArray(/*pos=*/ 0u, /*length=*/ 1u), in TEST_F()
Ddex2oat.cc1175 locations = locations.SubArray(/*pos=*/ 0u, /*length=*/ 1u); in ExpandOatAndImageFilenames()
1850 bcp_dex_files.SubArray(/*pos=*/ 0u, bcp_dex_files.size() - dex_files.size()); in Setup()
/art/compiler/optimizing/
Ddead_code_elimination.cc51 live_successors = live_successors.SubArray(0u, 1u); in MarkReachableBlocks()
55 live_successors = live_successors.SubArray(1u, 1u); in MarkReachableBlocks()
71 live_successors = live_successors.SubArray(switch_index, 1u); in MarkReachableBlocks()
74 live_successors = live_successors.SubArray(switch_instruction->GetNumEntries(), 1u); in MarkReachableBlocks()
Ddata_type_test.cc75 const ArrayRef<const DataType::Type> kIntegralResultTypes = kIntegralInputTypes.SubArray(1u); in TEST()
Dnodes.cc2017 return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u); in GetNormalSuccessors()
Dnodes.h569 return ArrayRef<HBasicBlock* const>(GetReversePostOrder()).SubArray(1); in GetReversePostOrderSkipEntryBlock()
3280 return ArrayRef<HBasicBlock* const>(GetBlock()->GetSuccessors()).SubArray(1u); in GetExceptionHandlers()
/art/runtime/
Dvdex_file.cc292 return CompactOffsetTable::Accessor(quickening_info.SubArray(offset).data()); in GetQuickenInfoOffsetTable()
304 ArrayRef<const uint8_t> remaining = quickening_info.SubArray(quickening_offset - 1); in GetQuickeningInfoAt()
305 return remaining.SubArray(0u, QuickenInfoTable::SizeInBytes(remaining)); in GetQuickeningInfoAt()
372 image_spaces.SubArray(/*pos=*/ 0u, boot_image_components), in ComputeBootClassPathChecksumString()
Druntime.cc1592 OpenBootDexFiles(ArrayRef<const std::string>(GetBootClassPath()).SubArray(start), in Init()
1593 ArrayRef<const std::string>(GetBootClassPathLocations()).SubArray(start), in Init()
/art/runtime/gc/space/
Dimage_space.cc802 boot_image_spaces.SubArray(/*pos=*/ boot_image_space_dependencies); in InitAppImage()
1709 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl()
2194 boot_class_path_.SubArray(/*pos=*/ 0u, /*length=*/ dependency_component_count); in CompileExtension()
2196 boot_class_path_locations_.SubArray(/*pos=*/ 0u, /*length=*/ dependency_component_count); in CompileExtension()
2198 boot_class_path_.SubArray(/*pos=*/ bcp_index, /*length=*/ bcp_end - bcp_index); in CompileExtension()
2200 boot_class_path_locations_.SubArray(/*pos=*/ bcp_index, /*length=*/ bcp_end - bcp_index); in CompileExtension()
2339 ArrayRef<const std::string>(components).SubArray(/*pos=*/ 0u, named_components_count); in LoadOrValidate()
2359 ArrayRef<std::string>(components).SubArray(/*pos=*/ 0, /*length=*/ i); in LoadOrValidate()
2410 ArrayRef<const std::string>(components).SubArray(/*pos=*/ named_components_count); in LoadOrValidate()
2767 spaces.SubArray(/*pos=*/ 0u, base_image_space_count), in DoRelocateSpaces()
[all …]
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc249 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray( in CalleeSaveRegisters()
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc303 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray( in CalleeSaveRegisters()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc458 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray( in CalleeSaveRegisters()
/art/runtime/mirror/
Dclass-inl.h230 return slice.SubArray(start_offset, size); in GetMethodsSliceRangeUnchecked()
/art/compiler/utils/arm/
Djni_macro_assembler_arm_vixl.cc578 uint32_t core_reg_mask = GetCoreRegisterMask(srcs.SubArray(i, chunk_size)); in MoveArguments()
/art/dex2oat/linker/
Dimage_writer.cc2170 ArrayRef<mirror::Object*>(missed_objects).SubArray(/*pos=*/ 0u, /*length=*/ num_paths); in VerifyImageBinSlotsAssigned()