Searched refs:dstBegin (Results 1 - 4 of 4) sorted by relevance

/art/compiler/optimizing/
H A Dintrinsics_arm.cc1962 // void getCharsNoCheck(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1968 Register dstBegin = locations->InAt(4).AsRegister<Register>(); local
1982 __ add(dst_ptr, dst_ptr, ShifterOperand(dstBegin, LSL, 1));
H A Dintrinsics_arm64.cc1674 // void getCharsNoCheck(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1680 Register dstBegin = XRegisterFrom(locations->InAt(4)); local
1696 __ Add(dst_ptr, dst_ptr, Operand(dstBegin, LSL, 1));
H A Dintrinsics_x86.cc1605 // public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1632 // public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1639 Register dstBegin = locations->InAt(4).AsRegister<Register>(); local
1646 __ leal(EDI, Address(dst, dstBegin, ScaleFactor::TIMES_2, data_offset));
H A Dintrinsics_x86_64.cc1709 // public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1735 // public void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1742 CpuRegister dstBegin = locations->InAt(4).AsRegister<CpuRegister>(); local
1749 __ leaq(CpuRegister(RDI), Address(dst, dstBegin, ScaleFactor::TIMES_2, data_offset));

Completed in 94 milliseconds