Searched refs:length_arg (Results 1 – 5 of 5) sorted by relevance
/art/runtime/mirror/ |
D | string.cc | 113 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/ |
D | java_lang_String.cc | 61 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/ |
D | intrinsics_x86.cc | 2893 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()
|
D | code_generator_x86.cc | 162 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()
|
D | code_generator_x86_64.cc | 213 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()
|