Searched refs:start_index (Results 1 – 15 of 15) sorted by relevance
/art/libartbase/base/ |
D | bit_vector-inl.h | 51 inline uint32_t BitVector::IndexIterator::FindIndex(uint32_t start_index) const { in FindIndex() argument 52 DCHECK_LE(start_index, BitSize()); in FindIndex() 53 uint32_t word_index = start_index / kWordBits; in FindIndex() 55 return start_index; in FindIndex() 59 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f); in FindIndex()
|
D | bit_vector.h | 80 uint32_t FindIndex(uint32_t start_index) const;
|
/art/runtime/mirror/ |
D | method_type.cc | 77 int32_t start_index) { in CollectTrailingArguments() argument 79 if (start_index > ptypes_length) { in CollectTrailingArguments() 87 Handle<ObjectArray<Class>> dst_ptypes = hs.NewHandle(AllocatePTypesArray(self, start_index + 1)); in CollectTrailingArguments() 91 for (int32_t i = 0; i < start_index; ++i) { in CollectTrailingArguments() 94 dst_ptypes->Set(start_index, collector_class.Get()); in CollectTrailingArguments()
|
D | method_type.h | 47 int32_t start_index)
|
/art/libnativeloader/ |
D | library_namespaces.cpp | 448 size_t start_index = strlen(kApexPath); in FindApexNamespaceName() local 449 size_t slash_index = location.find_first_of('/', start_index); in FindApexNamespaceName() 452 std::string name = location.substr(start_index, slash_index - start_index); in FindApexNamespaceName()
|
/art/runtime/ |
D | method_handles-inl.h | 171 int32_t start_index, in PerformConversions() argument 177 for (int32_t i = start_index; i < end_index; ++i) { in PerformConversions() 179 ObjPtr<mirror::Class> to(to_types->GetWithoutChecks(i - start_index)); in PerformConversions()
|
D | method_handles.h | 127 int32_t start_index,
|
D | class_loader_context.cc | 236 size_t start_index = class_loader_spec.find_first_of(kClassLoaderSharedLibraryOpeningMark); in ParseClassLoaderSpec() local 237 if (start_index == std::string::npos) { in ParseClassLoaderSpec() 241 class_loader_spec.substr(start_index + 1, class_loader_spec.length() - start_index - 2); in ParseClassLoaderSpec()
|
/art/runtime/gc/accounting/ |
D | space_bitmap.cc | 137 const uintptr_t start_index = OffsetToIndex(begin_offset); in ClearRange() local 139 ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange() 140 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()
|
/art/profman/ |
D | profman.cc | 1074 size_t start_index = 0; in ProcessLine() local 1075 while (start_index < line.size() && line[start_index] != 'L') { in ProcessLine() 1076 const char c = line[start_index]; in ProcessLine() 1087 ++start_index; in ProcessLine() 1089 klass = line.substr(start_index, method_sep_index - start_index); in ProcessLine()
|
/art/runtime/gc/space/ |
D | image_space.cc | 1629 size_t start_index; member 1988 if (chunk.start_index != component_count) { in ValidateBootImageChecksum() 2085 chunk.start_index = bcp_index; in ReadHeader() 2126 if (chunks_.size() == i || chunks_[i].start_index != dependency_component_count) { in CompileExtension() 2270 chunk.start_index = bcp_index; in CompileExtension() 2631 boot_class_path_locations_[chunk.start_index].c_str(), in LoadImage() 2641 << boot_class_path_locations_[chunk.start_index] << ": " << extension_error_msg; in LoadImage() 2645 if (max_image_space_dependencies == chunk.start_index && in LoadImage() 2646 spaces.size() == chunk.start_index + chunk.component_count) { in LoadImage() 2647 max_image_space_dependencies = chunk.start_index + chunk.component_count; in LoadImage() [all …]
|
/art/runtime/interpreter/ |
D | unstarted_runtime_test.cc | 337 for (int32_t start_index = 0; start_index < kBaseLen; ++start_index) { in TEST_F() local 341 if (start_index + count <= kBaseLen && trg_offset + count <= kBaseLen) { in TEST_F() 343 tmp->SetVReg(1, start_index); in TEST_F() 363 success = success && (data[i] == buf[i - trg_offset + start_index]); in TEST_F()
|
/art/compiler/optimizing/ |
D | intrinsics_x86_64.cc | 1388 CpuRegister start_index = locations->InAt(2).AsRegister<CpuRegister>(); in GenerateStringIndexOf() local 1391 __ cmpl(start_index, string_length); in GenerateStringIndexOf() 1396 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf() 1397 __ cmov(kGreater, counter, start_index, /* is64bit= */ false); // 32-bit copy is enough. in GenerateStringIndexOf()
|
D | intrinsics_x86.cc | 1206 Register start_index = locations->InAt(2).AsRegister<Register>(); in GenerateStringIndexOf() local 1209 __ cmpl(start_index, string_length); in GenerateStringIndexOf() 1214 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf() 1215 __ cmovl(kGreater, counter, start_index); in GenerateStringIndexOf()
|
D | instruction_builder.cc | 1482 size_t start_index = 0u; in SetupInvokeArguments() local 1488 start_index = 1u; in SetupInvokeArguments() 1502 for (size_t i = start_index; i < number_of_operands; ++i, ++argument_index) { in SetupInvokeArguments()
|