/aosp12/art/libartbase/base/ |
H A D | dchecked_vector.h | 58 dchecked_vector() in dchecked_vector() function 64 dchecked_vector(size_type n, 73 dchecked_vector(const dchecked_vector& src) in dchecked_vector() function 75 dchecked_vector(const dchecked_vector& src, const allocator_type& alloc) in dchecked_vector() function 77 dchecked_vector(dchecked_vector&& src) in dchecked_vector() function 79 dchecked_vector(dchecked_vector&& src, const allocator_type& alloc) in dchecked_vector() function 84 ~dchecked_vector() = default; 85 dchecked_vector& operator=(const dchecked_vector& src) { 89 dchecked_vector& operator=(dchecked_vector&& src) { 196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) { in swap() [all …]
|
H A D | arena_containers.h | 56 using ArenaVector = dchecked_vector<T, ArenaAllocatorAdapter<T>>;
|
H A D | scoped_arena_containers.h | 54 using ScopedArenaVector = dchecked_vector<T, ScopedArenaAllocatorAdapter<T>>;
|
H A D | arena_allocator.h | 145 dchecked_vector<size_t> alloc_stats_; // Bytes used by various allocation kinds.
|
/aosp12/art/libprofile/profile/ |
H A D | profile_compilation_info.h | 692 const dchecked_vector<std::string>* extra_descriptors_; 711 const dchecked_vector<std::string>* extra_descriptors_; 791 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, 800 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, 891 /*out*/ dchecked_vector<ProfileIndexType>* dex_profile_index_remap, 897 /*out*/ dchecked_vector<ExtraDescriptorIndex>* extra_descriptors_remap, 903 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, 904 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, 910 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, 911 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, [all …]
|
H A D | profile_compilation_info.cc | 1488 /*out*/ dchecked_vector<ProfileIndexType>* dex_profile_index_remap, in ReadDexFilesSection() 1605 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, in ReadClassesSection() 1606 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, in ReadClassesSection() 1641 const dchecked_vector<ProfileIndexType>& dex_profile_index_remap, in ReadMethodsSection() 1642 const dchecked_vector<ExtraDescriptorIndex>& extra_descriptors_remap, in ReadMethodsSection() 1721 dchecked_vector<FileSectionInfo> section_infos(section_count); in LoadInternal() 1759 dchecked_vector<ProfileIndexType> dex_profile_index_remap; in LoadInternal() 1768 dchecked_vector<ExtraDescriptorIndex> extra_descriptors_remap; in LoadInternal() 1842 dchecked_vector<ProfileIndexType> dex_profile_index_remap; in MergeWith() 1859 dchecked_vector<ExtraDescriptorIndex> extra_descriptors_remap; in MergeWith() [all …]
|
/aosp12/art/dex2oat/linker/ |
H A D | oat_writer.h | 155 dchecked_vector<std::string> GetSourceLocations() const; 363 dchecked_vector<debug::MethodDebugInfo> method_info_; 478 dchecked_vector<OatDexFile> oat_dex_files_; 479 dchecked_vector<OatClassHeader> oat_class_headers_; 480 dchecked_vector<OatClass> oat_classes_;
|
H A D | oat_writer.cc | 253 OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, 265 dchecked_vector<CompiledMethod*> compiled_methods_; 271 dchecked_vector<uint32_t> oat_method_offsets_offsets_from_oat_class_; 296 dchecked_vector<OatMethodOffsets> method_offsets_; 297 dchecked_vector<OatQuickMethodHeader> method_headers_; 367 dchecked_vector<uint32_t> class_offsets_; 670 dchecked_vector<std::string> OatWriter::GetSourceLocations() const { in GetSourceLocations() 671 dchecked_vector<std::string> locations; in GetSourceLocations() 1042 dchecked_vector<CompiledMethod*> compiled_methods_; 3984 OatWriter::OatClass::OatClass(const dchecked_vector<CompiledMethod*>& compiled_methods, in OatClass()
|
H A D | image_writer.h | 652 dchecked_vector<ImageInfo> image_infos_;
|
H A D | image_writer.cc | 1539 dchecked_vector<dchecked_vector<dchecked_vector<mirror::Object*>>> bin_objects_; 1544 dchecked_vector<mirror::String*> non_dex_file_interns_;
|
/aosp12/art/compiler/utils/ |
H A D | atomic_dex_ref_map.h | 72 using ElementArray = dchecked_vector<Atomic<Value>>;
|
/aosp12/art/test/622-simplifyifs-exception-edges/smali/ |
H A D | Test.smali | 66 # this caused out-of-range access triggering a DCHECK() in dchecked_vector<>.
|
/aosp12/art/runtime/ |
H A D | class_loader_context.h | 94 bool RemoveLocationsFromClassPaths(const dchecked_vector<std::string>& compilation_sources);
|
H A D | stack_map.h | 112 dchecked_vector<DexRegisterLocation> regs_large_;
|
H A D | class_loader_context_test.cc | 1031 dchecked_vector<std::string> classpath_dex; in TEST_F() 1033 dchecked_vector<std::string> compilation_sources; in TEST_F()
|
H A D | class_loader_context.cc | 517 const dchecked_vector<std::string>& locations) { in RemoveLocationsFromClassPaths()
|
/aosp12/art/compiler/optimizing/ |
H A D | stack_map_stream.cc | 294 auto expected_dex_registers = std::make_shared<dchecked_vector<DexRegisterLocation>>( in CreateDexRegisterMap()
|
/aosp12/art/dex2oat/ |
H A D | dex2oat.cc | 2770 dchecked_vector<uintptr_t> oat_data_begins; in CreateImageFile()
|