Home
last modified time | relevance | path

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

/art/libartbase/base/
Darray_slice.h122 ArraySlice<T> SubArray(size_type pos) { in SubArray() function
123 return SubArray(pos, size() - pos); in SubArray()
126 ArraySlice<const T> SubArray(size_type pos) const { in SubArray() function
127 return SubArray(pos, size() - pos); in SubArray()
130 ArraySlice<T> SubArray(size_type pos, size_type length) { in SubArray() function
136 ArraySlice<const T> SubArray(size_type pos, size_type length) const { in SubArray() function
Darray_ref.h168 ArrayRef SubArray(size_type pos) { in SubArray() function
169 return SubArray(pos, size() - pos); in SubArray()
172 ArrayRef<const T> SubArray(size_type pos) const { in SubArray() function
173 return SubArray(pos, size() - pos); in SubArray()
176 ArrayRef SubArray(size_type pos, size_type length) { in SubArray() function
182 ArrayRef<const T> SubArray(size_type pos, size_type length) const { in SubArray() function
Dtransform_array_ref.h117 TransformArrayRef SubArray(size_type pos) { in SubArray() function
120 TransformArrayRef SubArray(size_type pos) const { in SubArray() function
123 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()
572 single_dex_files.SubArray(/*pos=*/ 0u, /*length=*/ 1u), in TEST_F()
Ddex2oat.cc913 locations = locations.SubArray(/*pos=*/ 0u, /*length=*/ 1u); in ExpandOatAndImageFilenames()
1606 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()
Dinduction_var_analysis.cc332 ArrayRef<StackEntry> stack_tail = ArrayRef<StackEntry>(stack).SubArray(current_entry); in TryVisitNodes()
380 for (const StackEntry& entry : ReverseRange(stack_tail.SubArray(/*pos=*/ 0u, split_pos))) { in ExtractScc()
383 for (const StackEntry& entry : ReverseRange(stack_tail.SubArray(/*pos=*/ split_pos))) { in ExtractScc()
Dnodes.cc2291 return ArrayRef<HBasicBlock* const>(successors_).SubArray(0u, 1u); in GetNormalSuccessors()
Dnodes.h589 return ArrayRef<HBasicBlock* const>(GetReversePostOrder()).SubArray(1); in GetReversePostOrderSkipEntryBlock()
3516 return ArrayRef<HBasicBlock* const>(GetBlock()->GetSuccessors()).SubArray(1u);
/art/compiler/jni/quick/arm64/
Dcalling_convention_arm64.cc248 return ArrayRef<const ManagedRegister>(kAapcs64CalleeSaveRegisters).SubArray(kStart, kLength); in CalleeSaveScratchRegisters()
261 scratch_regs = scratch_regs.SubArray(/*pos=*/ 1u); in ArgumentScratchRegisters()
321 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray( in CalleeSaveRegisters()
/art/compiler/jni/quick/arm/
Dcalling_convention_arm.cc403 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray(kStart, kLength); in CalleeSaveScratchRegisters()
417 scratch_regs = scratch_regs.SubArray(/*pos=*/ return_reg_overlaps(scratch_regs[1]) ? 2u : 1u); in ArgumentScratchRegisters()
477 return ArrayRef<const ManagedRegister>(kCalleeSaveRegisters).SubArray( in CalleeSaveRegisters()
/art/runtime/
Doat_file-inl.h106 bcp_dexfiles = bcp_dexfiles.SubArray(/*pos=*/ 0u, mapping_info_vector.size()); in FindBcpMappingInfo()
Druntime.cc1831 ? ArrayRef<const int>(GetBootClassPathFds()).SubArray(start) in Init()
1833 OpenBootDexFiles(ArrayRef<const std::string>(GetBootClassPath()).SubArray(start), in Init()
1834 ArrayRef<const std::string>(GetBootClassPathLocations()).SubArray(start), in Init()
/art/runtime/gc/space/
Dimage_space.cc569 boot_image_spaces.SubArray(/*pos=*/ boot_image_space_dependencies); in InitAppImage()
1480 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, 1u), in ExpandLocationImpl()
1848 ArrayRef<const std::string>(boot_class_path_).SubArray(bcp_index, component_count); in ValidateOatFile()
1851 ArrayRef<const int>(boot_class_path_fds_).SubArray(bcp_index, component_count) : in ValidateOatFile()
2050 boot_class_path_.SubArray(/*pos=*/ 0u, /*length=*/ dependency_component_count); in CompileBootclasspathElements()
2052 boot_class_path_locations_.SubArray(/*pos=*/ 0u, /*length=*/ dependency_component_count); in CompileBootclasspathElements()
2054 boot_class_path_.SubArray(/*pos=*/ bcp_index, /*length=*/ bcp_end - bcp_index); in CompileBootclasspathElements()
2056 boot_class_path_locations_.SubArray(/*pos=*/ bcp_index, /*length=*/ bcp_end - bcp_index); in CompileBootclasspathElements()
2204 ArrayRef<const std::string>(components).SubArray(/*pos=*/ 0u, named_components_count); in LoadOrValidate()
2272 components.SubArray(/*pos=*/ 0, /*length=*/ 1), in LoadOrValidate()
[all …]
Dimage_space_test.cc504 GenerateBootProfile(ArrayRef<const std::string>(dex_files).SubArray( in PrepareImageLocation()
511 GenerateBootProfile(ArrayRef<const std::string>(dex_files).SubArray( in PrepareImageLocation()
/art/compiler/jni/quick/x86/
Dcalling_convention_x86.cc106 scratch_regs = scratch_regs.SubArray(/*pos=*/ return_reg_overlaps(scratch_regs[1]) ? 2u : 1u); in ArgumentScratchRegisters()
/art/compiler/jni/quick/x86_64/
Dcalling_convention_x86_64.cc262 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.cc619 uint32_t core_reg_mask = GetCoreRegisterMask(srcs.SubArray(i, chunk_size)); in MoveArguments()
/art/dex2oat/linker/
Dimage_writer.cc2147 non_dex_file_interns.SubArray(ndfi_index, num_non_dex_file_interns); in FinalizeInternTables()
2246 ArrayRef<mirror::Object*>(missed_objects).SubArray(/*pos=*/ 0u, /*length=*/ num_paths); in VerifyImageBinSlotsAssigned()