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

/art/compiler/optimizing/
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);
1634 Location srcBegin = locations->InAt(1); local
1636 srcBegin.IsConstant() ? srcBegin.GetConstant()->AsIntConstant()->GetValue() : 0;
1649 if (srcBegin.IsConstant()) {
1654 __ leal(ESI, Address(obj, srcBegin.AsRegister<Register>(),
1664 if (srcBegin.IsConstant()) {
1669 DCHECK(srcBegin.IsRegister());
1670 __ subl(ECX, srcBegin
[all...]
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);
1737 Location srcBegin = locations->InAt(1); local
1739 srcBegin.IsConstant() ? srcBegin.GetConstant()->AsIntConstant()->GetValue() : 0;
1752 if (srcBegin.IsConstant()) {
1757 __ leaq(CpuRegister(RSI), Address(obj, srcBegin.AsRegister<CpuRegister>(),
1763 if (srcBegin.IsConstant()) {
1768 DCHECK(srcBegin.IsRegister());
1769 __ subl(CpuRegister(RCX), srcBegin
[all...]
H A Dintrinsics_arm.cc1962 // void getCharsNoCheck(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1965 Register srcBegin = locations->InAt(1).AsRegister<Register>(); local
1978 __ add(src_ptr, src_ptr, ShifterOperand(srcBegin, LSL, 1));
H A Dintrinsics_arm64.cc1674 // void getCharsNoCheck(int srcBegin, int srcEnd, char[] dst, int dstBegin);
1677 Register srcBegin = XRegisterFrom(locations->InAt(1)); local
1692 __ Add(src_ptr, src_ptr, Operand(srcBegin, LSL, 1));

Completed in 52 milliseconds