Home
last modified time | relevance | path

Searched refs:length_arg (Results 1 – 5 of 5) sorted by relevance

/art/runtime/mirror/
Dstring.cc113 int32_t length_arg = h_arg->GetLength(); in DoConcat() local
117 const int32_t length_with_flag = String::GetFlaggedCount(length_this + length_arg, compressible); in DoConcat()
126 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
139 for (int i = 0; i < length_arg; ++i) { in DoConcat()
143 memcpy(new_value + length_this, h_arg->GetValue(), length_arg * sizeof(uint16_t)); in DoConcat()
/art/runtime/native/
Djava_lang_String.cc61 int32_t length_arg = string_arg->GetLength(); in String_concat() local
62 if (length_arg > 0 && length_this > 0) { in String_concat()
/art/compiler/optimizing/
Dintrinsics_x86.cc2893 Location length_arg = locations->InAt(4); in VisitSystemArrayCopy() local
2894 Location length = length_arg; in VisitSystemArrayCopy()
3032 DCHECK(length_arg.IsStackSlot()); in VisitSystemArrayCopy()
3033 length = length_arg; in VisitSystemArrayCopy()
3164 DCHECK(length.Equals(length_arg)); in VisitSystemArrayCopy()
Dcode_generator_x86.cc162 Location length_arg = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode() local
171 if (!index_loc.Equals(length_arg)) { in EmitNativeCode()
173 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
179 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
189 length_arg, in EmitNativeCode()
191 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
192 Address(length_arg.AsRegister<Register>(), len_offset)); in EmitNativeCode()
195 __ shrl(length_arg.AsRegister<Register>(), Immediate(1)); in EmitNativeCode()
205 length_arg, in EmitNativeCode()
Dcode_generator_x86_64.cc213 Location length_arg = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode() local
223 if (!index_loc.Equals(length_arg)) { in EmitNativeCode()
225 __ movl(length_arg.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
230 __ movl(length_arg.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
237 __ movl(length_arg.AsRegister<CpuRegister>(), CpuRegister(TMP)); in EmitNativeCode()
240 __ shrl(length_arg.AsRegister<CpuRegister>(), Immediate(1)); in EmitNativeCode()
250 length_arg, in EmitNativeCode()