Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector-inl.h49 inline uint32_t BitVector::IndexIterator::FindIndex(uint32_t start_index) const { in FindIndex() argument
50 DCHECK_LE(start_index, BitSize()); in FindIndex()
51 uint32_t word_index = start_index / kWordBits; in FindIndex()
53 return start_index; in FindIndex()
57 word &= static_cast<uint32_t>(-1) << (start_index & 0x1f); in FindIndex()
Dbit_vector.h87 uint32_t FindIndex(uint32_t start_index) const;
/art/runtime/gc/accounting/
Dspace_bitmap.cc128 const uintptr_t start_index = OffsetToIndex(begin_offset); in ClearRange() local
130 ZeroAndReleasePages(reinterpret_cast<uint8_t*>(&bitmap_begin_[start_index]), in ClearRange()
131 (end_index - start_index) * sizeof(*bitmap_begin_)); in ClearRange()
/art/profman/
Dprofman.cc769 size_t start_index = 0; in ProcessLine() local
770 while (start_index < line.size() && line[start_index] != 'L') { in ProcessLine()
771 const char c = line[start_index]; in ProcessLine()
782 ++start_index; in ProcessLine()
784 klass = line.substr(start_index, method_sep_index - start_index); in ProcessLine()
/art/runtime/interpreter/
Dunstarted_runtime_test.cc319 for (int32_t start_index = 0; start_index < kBaseLen; ++start_index) { in TEST_F() local
323 if (start_index + count <= kBaseLen && trg_offset + count <= kBaseLen) { in TEST_F()
325 tmp->SetVReg(1, start_index); in TEST_F()
345 success = success && (data[i] == buf[i - trg_offset + start_index]); in TEST_F()
/art/compiler/optimizing/
Dinstruction_builder.h266 size_t start_index,
Dinstruction_builder.cc1104 size_t start_index, in SetupInvokeArguments() argument
1108 for (size_t i = start_index; in SetupInvokeArguments()
1163 size_t start_index = 0; in HandleInvoke() local
1171 start_index = 1; in HandleInvoke()
1181 start_index, in HandleInvoke()
1210 size_t start_index = 1; in HandleStringInit() local
1218 start_index, in HandleStringInit()
Dintrinsics_x86_64.cc1743 CpuRegister start_index = locations->InAt(2).AsRegister<CpuRegister>(); in GenerateStringIndexOf() local
1746 __ cmpl(start_index, string_length); in GenerateStringIndexOf()
1751 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf()
1752 __ cmov(kGreater, counter, start_index, /* is64bit */ false); // 32-bit copy is enough. in GenerateStringIndexOf()
Dintrinsics_x86.cc1580 Register start_index = locations->InAt(2).AsRegister<Register>(); in GenerateStringIndexOf() local
1583 __ cmpl(start_index, string_length); in GenerateStringIndexOf()
1588 __ cmpl(start_index, Immediate(0)); in GenerateStringIndexOf()
1589 __ cmovl(kGreater, counter, start_index); in GenerateStringIndexOf()