Home
last modified time | relevance | path

Searched refs:start_index (Results 1 – 22 of 22) sorted by relevance

/art/compiler/optimizing/
Dintrinsic_objects.cc55 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, size_t start_index) { in FillIntrinsicObjects() argument
56 DCHECK_EQ(start_index, ImageHeader::kIntrinsicObjectsStart); in FillIntrinsicObjects()
57 int32_t index = dchecked_integral_cast<int32_t>(start_index); in FillIntrinsicObjects()
70 DCHECK_EQ(dchecked_integral_cast<size_t>(index), start_index + GetNumberOfIntrinsicObjects()); in FillIntrinsicObjects()
84 size_t start_index, in GetValueOfObject() argument
90 kIntrinsicObjectsOffset + start_index + index); in GetValueOfObject()
97 size_t start_index) { in GetValueOfArrayDataOffset() argument
100 mirror::ObjectArray<mirror::Object>::OffsetOfElement(kIntrinsicObjectsOffset + start_index); in GetValueOfArrayDataOffset()
101 DCHECK_EQ(GetValueOfObject(boot_image_live_objects, start_index, 0u), in GetValueOfArrayDataOffset()
Dintrinsic_objects.h44 #define DEFINE_BOXED_CONSTANTS(name, low, high, unused, start_index) \ argument
45 static constexpr size_t k ##name ##CacheLastIndex = start_index + (high - low + 1); \
46 static constexpr size_t k ##name ##CacheFirstIndex = start_index;
74 #define DEFINE_BOXED_ACCESSES(name, unused1, unused2, unused3, start_index) \ argument
89 ObjPtr<mirror::ObjectArray<mirror::Object>> boot_image_live_objects, size_t start_index)
98 size_t start_index,
103 size_t start_index) REQUIRES_SHARED(Locks::mutator_lock_);
Dintrinsics_x86.cc1240 Register start_index = locations->InAt(2).AsRegister<Register>(); in GenerateStringIndexOf() local
1243 __ cmpl(start_index, string_length); in GenerateStringIndexOf()
1248 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf()
1249 __ cmovl(kGreater, counter, start_index); in GenerateStringIndexOf()
3383 #define VISIT_INTRINSIC(name, low, high, type, start_index) \ argument
3402 start_index); \
Dintrinsics_x86_64.cc1404 CpuRegister start_index = locations->InAt(2).AsRegister<CpuRegister>(); in GenerateStringIndexOf() local
1407 __ cmpl(start_index, string_length); in GenerateStringIndexOf()
1412 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf()
1413 __ cmov(kGreater, counter, start_index, /* is64bit= */ false); // 32-bit copy is enough. in GenerateStringIndexOf()
3183 #define VISIT_INTRINSIC(name, low, high, type, start_index) \ argument
3201 start_index); \
Dinstruction_builder.cc1780 size_t start_index = 0u; in SetupInvokeArguments() local
1786 start_index = 1u; in SetupInvokeArguments()
1800 for (size_t i = start_index; i < number_of_operands; ++i, ++argument_index) { in SetupInvokeArguments()
Dintrinsics_riscv64.cc663 #define VISIT_INTRINSIC(name, low, high, type, start_index) \ argument
681 start_index); \
Dintrinsics_arm64.cc3448 #define VISIT_INTRINSIC(name, low, high, type, start_index) \ argument
3466 start_index); \
Dintrinsics_arm_vixl.cc2308 #define VISIT_INTRINSIC(name, low, high, type, start_index) \ argument
2325 start_index); \
Dinstruction_simplifier.cc3152 #define SIMPLIFY_BOX_UNBOX(name, low, high, type, start_index) \ in VisitInvoke() argument
/art/libartbase/base/
Dbit_vector-inl.h51 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()
Dbit_vector.h92 uint32_t FindIndex(uint32_t start_index) const;
/art/runtime/mirror/
Dmethod_type.cc98 int32_t start_index) { in CollectTrailingArguments() argument
100 if (start_index > ptypes_length) { in CollectTrailingArguments()
108 Handle<ObjectArray<Class>> dst_ptypes = hs.NewHandle(AllocatePTypesArray(self, start_index + 1)); in CollectTrailingArguments()
112 for (int32_t i = 0; i < start_index; ++i) { in CollectTrailingArguments()
115 dst_ptypes->Set(start_index, collector_class.Get()); in CollectTrailingArguments()
Dmethod_type.h76 int32_t start_index)
/art/libnativeloader/
Dlibrary_namespaces.cpp487 size_t start_index = strlen(kApexPath); in FindApexNamespaceName() local
488 size_t slash_index = location.find_first_of('/', start_index); in FindApexNamespaceName()
491 std::string name = location.substr(start_index, slash_index - start_index); in FindApexNamespaceName()
/art/runtime/gc/accounting/
Dspace_bitmap.cc173 const uintptr_t start_index = OffsetToIndex(begin_offset); in ClearRange() local
175 ZeroAndReleaseMemory(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange()
176 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc275 for (int32_t start_index = 0; start_index < kBaseLen; ++start_index) { in TEST_F() local
279 if (start_index + count <= kBaseLen && trg_offset + count <= kBaseLen) { in TEST_F()
281 tmp->SetVReg(1, start_index); in TEST_F()
301 success = success && (data[i] == buf[i - trg_offset + start_index]); in TEST_F()
/art/runtime/gc/space/
Dimage_space.cc1675 if (chunk.start_index != component_count) { in ValidateBootImageChecksum()
1859 chunk.start_index = bcp_index; in ReadHeader()
1901 if (chunks_.size() == i || chunks_[i].start_index != dependency_component_count) { in CompileBootclasspathElements()
2055 chunk.start_index = bcp_index; in CompileBootclasspathElements()
2347 boot_class_path_locations_[chunk.start_index].c_str(), in LoadImage()
2357 << boot_class_path_locations_[chunk.start_index] << ": " << extension_error_msg; in LoadImage()
2365 if (max_image_space_dependencies == chunk.start_index && in LoadImage()
2366 total_component_count == chunk.start_index + chunk.component_count) { in LoadImage()
2367 max_image_space_dependencies = chunk.start_index + chunk.component_count; in LoadImage()
3028 bool is_extension = (chunk.start_index != 0u); in LoadComponents()
[all …]
Dimage_space.h327 size_t start_index; member
/art/profman/
Dprofman.cc1423 size_t start_index = 0; in ProcessLine() local
1424 while (start_index < line.size() && line[start_index] != 'L') { in ProcessLine()
1425 const char c = line[start_index]; in ProcessLine()
1436 ++start_index; in ProcessLine()
1438 klass = line.substr(start_index, method_sep_index - start_index); in ProcessLine()
/art/runtime/jni/
Dlocal_reference_table.cc620 const size_t start_index = top_index - table_size; in Trim() local
622 if (start_index != 0u) { in Trim()
625 uint8_t* release_start = AlignUp(reinterpret_cast<uint8_t*>(&table[start_index]), gPageSize); in Trim()
/art/runtime/
Dclass_loader_context.cc232 size_t start_index = class_loader_spec.find_first_of(kClassLoaderSharedLibraryOpeningMark); in ParseClassLoaderSpec() local
233 if (start_index == std::string::npos) { in ParseClassLoaderSpec()
237 class_loader_spec.substr(start_index + 1, class_loader_spec.length() - start_index - 2); in ParseClassLoaderSpec()
/art/runtime/native/
Djava_lang_Class.cc719 int32_t start_index = dot_index + 1; in Class_getSimpleNameNative() local
720 int32_t length = h_name->GetLength() - start_index; in Class_getSimpleNameNative()
723 mirror::String::AllocFromString(soa.Self(), length, h_name, start_index, allocator_type)); in Class_getSimpleNameNative()