Home
last modified time | relevance | path

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

/art/runtime/mirror/
Dstring.cc125 int32_t length_arg = h_arg->GetLength(); in DoConcat() local
129 const int32_t length_with_flag = String::GetFlaggedCount(length_this + length_arg, compressible); in DoConcat()
138 memcpy(new_value + length_this, h_arg->GetValueCompressed(), length_arg * sizeof(uint8_t)); in DoConcat()
151 for (int i = 0; i < length_arg; ++i) { in DoConcat()
155 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/
Dcode_generator_x86.cc166 Location length_arg = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode() local
175 if (!index_loc.Equals(length_arg)) { in EmitNativeCode()
177 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
183 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
193 length_arg, in EmitNativeCode()
195 __ movl(length_arg.AsRegister<Register>(), in EmitNativeCode()
196 Address(length_arg.AsRegister<Register>(), len_offset)); in EmitNativeCode()
199 __ shrl(length_arg.AsRegister<Register>(), Immediate(1)); in EmitNativeCode()
209 length_arg, in EmitNativeCode()
Dcode_generator_x86_64.cc216 Location length_arg = Location::RegisterLocation(calling_convention.GetRegisterAt(1)); in EmitNativeCode() local
226 if (!index_loc.Equals(length_arg)) { in EmitNativeCode()
228 __ movl(length_arg.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
233 __ movl(length_arg.AsRegister<CpuRegister>(), array_len); in EmitNativeCode()
240 __ movl(length_arg.AsRegister<CpuRegister>(), CpuRegister(TMP)); in EmitNativeCode()
243 __ shrl(length_arg.AsRegister<CpuRegister>(), Immediate(1)); in EmitNativeCode()
253 length_arg, in EmitNativeCode()