Searched refs:dst (Results 26 - 41 of 41) sorted by relevance

12

/art/runtime/interpreter/
H A Dinterpreter_goto_table_impl.cc372 uint32_t dst = inst->VRegA_11n(inst_data); local
374 shadow_frame.SetVReg(dst, val);
376 shadow_frame.SetVRegReference(dst, NULL);
383 uint32_t dst = inst->VRegA_21s(inst_data); local
385 shadow_frame.SetVReg(dst, val);
387 shadow_frame.SetVRegReference(dst, NULL);
394 uint32_t dst = inst->VRegA_31i(inst_data); local
396 shadow_frame.SetVReg(dst, val);
398 shadow_frame.SetVRegReference(dst, NULL);
405 uint32_t dst local
[all...]
H A Dinterpreter_common.cc885 ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>(); local
887 dst->Set(dstPos + i, src->Get(srcPos + i));
891 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray(); local
893 dst->Set(dstPos + i, src->Get(srcPos + i));
897 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray(); local
899 dst->Set(dstPos + i, src->Get(srcPos + i));
H A Dinterpreter_switch_impl.cc285 uint4_t dst = inst->VRegA_11n(inst_data); local
287 shadow_frame.SetVReg(dst, val);
289 shadow_frame.SetVRegReference(dst, NULL);
296 uint8_t dst = inst->VRegA_21s(inst_data); local
298 shadow_frame.SetVReg(dst, val);
300 shadow_frame.SetVRegReference(dst, NULL);
307 uint8_t dst = inst->VRegA_31i(inst_data); local
309 shadow_frame.SetVReg(dst, val);
311 shadow_frame.SetVRegReference(dst, NULL);
318 uint8_t dst local
[all...]
/art/compiler/sea_ir/ir/
H A Dsea.h309 // Adds a CFG edge from @src node to @dst node.
310 void AddEdge(Region* src, Region* dst) const;
H A Dsea.cc56 void SeaGraph::AddEdge(Region* src, Region* dst) const {
57 src->AddSuccessor(dst);
58 dst->AddPredecessor(src);
/art/runtime/gc/
H A Dheap.h375 ALWAYS_INLINE void WriteBarrierField(const mirror::Object* dst, MemberOffset /*offset*/, argument
377 card_table_->MarkCard(dst);
381 ALWAYS_INLINE void WriteBarrierArray(const mirror::Object* dst, int /*start_offset*/, argument
383 card_table_->MarkCard(dst);
/art/runtime/
H A Ddebugger.cc1320 uint8_t* dst = expandBufAddSpace(pReply, count * width); local
1323 for (int i = 0; i < count; ++i) JDWP::Write8BE(&dst, src8[offset + i]);
1326 for (int i = 0; i < count; ++i) JDWP::Write4BE(&dst, src4[offset + i]);
1329 for (int i = 0; i < count; ++i) JDWP::Write2BE(&dst, src2[offset + i]);
1332 memcpy(dst, &src[offset * width], count * width);
1355 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); variable
1357 *dst++ = src.ReadValue(sizeof(T));
1365 mirror::Array* dst = DecodeArray(array_id, status); local
1366 if (dst == NULL) {
1370 if (offset < 0 || count < 0 || offset > dst
[all...]
H A Dclass_linker.cc2873 Handle<mirror::Class> klass, Handle<mirror::ArtField> dst) {
2875 dst->SetDexFieldIndex(field_idx);
2876 dst->SetDeclaringClass(klass.Get());
2877 dst->SetAccessFlags(it.GetFieldAccessFlags());
2887 mirror::ArtMethod* dst = AllocArtMethod(self); local
2888 if (UNLIKELY(dst == nullptr)) {
2892 DCHECK(dst->IsArtMethod()) << PrettyDescriptor(dst->GetClass());
2895 dst->SetDexMethodIndex(dex_method_idx);
2896 dst
2872 LoadField(const DexFile& , const ClassDataItemIterator& it, Handle<mirror::Class> klass, Handle<mirror::ArtField> dst) argument
[all...]
H A Dclass_linker.h490 Handle<mirror::Class> klass, Handle<mirror::ArtField> dst)
/art/compiler/
H A Dimage_writer.cc979 byte* dst = image_writer->image_->Begin() + offset; local
990 memcpy(dst, src, n);
991 Object* copy = reinterpret_cast<Object*>(dst);
/art/compiler/utils/
H A Dassembler.h481 // src holds a handle scope entry (Object**) load this into dst
482 virtual void LoadReferenceFromHandleScope(ManagedRegister dst,
/art/test/MyClassNatives/
H A DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); argument
/art/compiler/utils/mips/
H A Dassembler_mips.h253 // src holds a handle scope entry (Object**) load this into dst
254 void LoadReferenceFromHandleScope(ManagedRegister dst, ManagedRegister src) OVERRIDE;
/art/compiler/optimizing/
H A Dcode_generator_x86.cc1491 void ParallelMoveResolverX86::MoveMemoryToMemory(int dst, int src) { argument
1496 __ movl(Address(ESP, dst + stack_offset), static_cast<Register>(ensure_scratch.GetRegister()));
/art/compiler/utils/arm/
H A Dassembler_arm.h707 // src holds a handle scope entry (Object**) load this into dst
708 void LoadReferenceFromHandleScope(ManagedRegister dst, ManagedRegister src) OVERRIDE;
/art/compiler/jni/
H A Djni_compiler_test.cc868 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) { argument
870 EXPECT_TRUE(env->IsSameObject(JniCompilerTest::jklass_, dst));

Completed in 1484 milliseconds

12