Searched refs:dst (Results 51 - 61 of 61) sorted by relevance

123

/art/runtime/
H A Dclass_linker.cc3135 ArtField* dst) {
3137 dst->SetDexFieldIndex(field_idx);
3138 dst->SetDeclaringClass(klass.Get());
3139 dst->SetAccessFlags(it.GetFieldAccessFlags());
3146 ArtMethod* dst) {
3152 dst->SetDexMethodIndex(dex_method_idx);
3153 dst->SetDeclaringClass(klass.Get());
3154 dst->SetCodeItemOffset(it.GetMethodCodeItemOffset());
3156 dst->SetDexCacheResolvedMethods(klass->GetDexCache()->GetResolvedMethods(), image_pointer_size_);
3157 dst
3133 LoadField(const ClassDataItemIterator& it, Handle<mirror::Class> klass, ArtField* dst) argument
3142 LoadMethod(Thread* self, const DexFile& dex_file, const ClassDataItemIterator& it, Handle<mirror::Class> klass, ArtMethod* dst) argument
[all...]
/art/compiler/optimizing/
H A Dcode_generator.h201 virtual void MoveLocation(Location dst, Location src, Primitive::Type dst_type) = 0;
H A Dcode_generator_x86.cc1103 void CodeGeneratorX86::MoveLocation(Location dst, Location src, Primitive::Type dst_type) { argument
1106 move.AddMove(src.ToLow(), dst.ToLow(), Primitive::kPrimInt, nullptr);
1107 move.AddMove(src.ToHigh(), dst.ToHigh(), Primitive::kPrimInt, nullptr);
1109 move.AddMove(src, dst, dst_type, nullptr);
5617 void ParallelMoveResolverX86::MoveMemoryToMemory32(int dst, int src) { argument
5623 __ movl(Address(ESP, dst + stack_offset), temp_reg);
5626 void ParallelMoveResolverX86::MoveMemoryToMemory64(int dst, int src) { argument
5632 __ movl(Address(ESP, dst + stack_offset), temp_reg);
5634 __ movl(Address(ESP, dst + stack_offset + kX86WordSize), temp_reg);
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);
1638 Register dst = locations->InAt(3).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);
1741 CpuRegister dst = locations->InAt(3).AsRegister<CpuRegister>(); local
1749 __ leaq(CpuRegister(RDI), Address(dst, dstBegin, ScaleFactor::TIMES_2, data_offset));
H A Dcode_generator_arm.cc1172 void CodeGeneratorARM::MoveLocation(Location dst, Location src, Primitive::Type dst_type) { argument
1174 move.AddMove(src, dst, dst_type, nullptr);
H A Dcode_generator_x86_64.cc1214 Location dst, Location src, Primitive::Type dst_type ATTRIBUTE_UNUSED) {
1215 Move(dst, src);
1213 MoveLocation( Location dst, Location src, Primitive::Type dst_type ATTRIBUTE_UNUSED) argument
/art/compiler/utils/mips/
H A Dassembler_mips.h542 // src holds a handle scope entry (Object**) load this into dst.
543 void LoadReferenceFromHandleScope(ManagedRegister dst, ManagedRegister src) OVERRIDE;
/art/compiler/utils/mips64/
H A Dassembler_mips64.h463 // src holds a handle scope entry (Object**) load this into dst.
464 void LoadReferenceFromHandleScope(ManagedRegister dst, ManagedRegister src) OVERRIDE;
/art/compiler/utils/arm/
H A Dassembler_arm.h1003 // src holds a handle scope entry (Object**) load this into dst
1004 void LoadReferenceFromHandleScope(ManagedRegister dst, ManagedRegister src) OVERRIDE;
/art/compiler/jni/
H A Djni_compiler_test.cc844 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) { argument
846 EXPECT_TRUE(env->IsSameObject(JniCompilerTest::jklass_, dst));

Completed in 241 milliseconds

123