Home
last modified time | relevance | path

Searched defs:dst (Results 1 – 24 of 24) sorted by relevance

/art/compiler/utils/x86/
Dassembler_x86.cc106 void X86Assembler::movl(Register dst, const Immediate& imm) { in movl()
113 void X86Assembler::movl(Register dst, Register src) { in movl()
120 void X86Assembler::movl(Register dst, const Address& src) { in movl()
127 void X86Assembler::movl(const Address& dst, Register src) { in movl()
134 void X86Assembler::movl(const Address& dst, const Immediate& imm) { in movl()
141 void X86Assembler::movl(const Address& dst, Label* lbl) { in movl()
148 void X86Assembler::movzxb(Register dst, ByteRegister src) { in movzxb()
156 void X86Assembler::movzxb(Register dst, const Address& src) { in movzxb()
164 void X86Assembler::movsxb(Register dst, ByteRegister src) { in movsxb()
172 void X86Assembler::movsxb(Register dst, const Address& src) { in movsxb()
[all …]
/art/runtime/base/unix_file/
Drandom_access_file_utils_test.cc28 StringFile dst; in TEST_F() local
41 StringFile dst; in TEST_F() local
47 FdFile dst(-1); in TEST_F() local
Drandom_access_file_utils.cc23 bool CopyFile(const RandomAccessFile& src, RandomAccessFile* dst) { in CopyFile()
Dmapped_file_test.cc37 FdFile dst(fd); in SetUp() local
/art/test/201-built-in-exception-detail-messages/src/
DMain.java136 Integer[] dst = new Integer[10]; in arrayStore() local
145 int[] dst = new int[1]; in arrayStore() local
153 Runnable[] dst = new Runnable[1]; in arrayStore() local
161 double[][] dst = new double[1][]; in arrayStore() local
169 Object[] dst = new Object[1]; in arrayStore() local
177 Integer dst = new Integer(5); in arrayStore() local
/art/runtime/jdwp/
Djdwp_bits.h100 static inline void Write1BE(uint8_t** dst, uint8_t value) { in Write1BE()
105 static inline void Write2BE(uint8_t** dst, uint16_t value) { in Write2BE()
110 static inline void Write4BE(uint8_t** dst, uint32_t value) { in Write4BE()
115 static inline void Write8BE(uint8_t** dst, uint64_t value) { in Write8BE()
/art/runtime/base/
Dstringprintf.cc23 void StringAppendV(std::string* dst, const char* format, va_list ap) { in StringAppendV()
74 void StringAppendF(std::string* dst, const char* format, ...) { in StringAppendF()
/art/runtime/
Dmonitor_android.cc37 static char* EventLogWriteInt(char* dst, int value) { in EventLogWriteInt()
43 static char* EventLogWriteString(char* dst, const char* value, size_t len) { in EventLogWriteString()
Dzip_archive.cc131 uint8_t* dst = begin; in CopyFdToMemory() local
176 uint8_t* dst = begin; in InflateToMemory() local
Dreflection.cc123 const JValue& src, JValue& dst) { in ConvertPrimitiveValue()
Ddebugger.cc1019 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray() local
1049 T* dst = &(reinterpret_cast<T*>(a->GetRawData(sizeof(T)))[offset * sizeof(T)]); in CopyArrayData() local
1059 mirror::Array* dst = DecodeArray(array_id, status); in SetArrayElements() local
Dclass_linker.cc1840 SirtRef<mirror::Class>& klass, SirtRef<mirror::ArtField>& dst) { in LoadField()
1854 mirror::ArtMethod* dst = AllocArtMethod(self); in LoadMethod() local
/art/compiler/
Dimage_writer.h100 byte* dst = image_->Begin() + offset; in GetLocalAddress() local
Dimage_writer.cc483 byte* dst = image_writer->image_->Begin() + offset; in CopyAndFixupObjectsCallback() local
/art/runtime/mirror/
Dobject_array-inl.h95 ObjectArray<T>* dst, int dst_pos, in Copy()
Dobject-inl.h267 inline void Object::WriteBarrierField(const Object* dst, MemberOffset field_offset, in WriteBarrierField()
/art/runtime/verifier/
Dregister_line.h298 void CopyRegToLockDepth(size_t dst, size_t src) { in CopyRegToLockDepth()
/art/runtime/interpreter/
Dinterpreter.cc139 …ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>(); in UnstartedRuntimeInvoke() local
145 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray(); in UnstartedRuntimeInvoke() local
151 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray(); in UnstartedRuntimeInvoke() local
1291 uint4_t dst = inst->VRegA_11n(); in ExecuteImpl() local
1302 uint8_t dst = inst->VRegA_21s(); in ExecuteImpl() local
1313 uint8_t dst = inst->VRegA_31i(); in ExecuteImpl() local
1324 uint8_t dst = inst->VRegA_21h(); in ExecuteImpl() local
/art/runtime/native/
Djava_lang_System.cc68 void MemmoveWords(void* dst, const void* src, size_t n) { in MemmoveWords()
/art/runtime/gc/
Dheap.h279 …void WriteBarrierField(const mirror::Object* dst, MemberOffset /*offset*/, const mirror::Object* /… in WriteBarrierField()
284 void WriteBarrierArray(const mirror::Object* dst, int /*start_offset*/, in WriteBarrierArray()
/art/test/MyClassNatives/
DMyClassNatives.java33 static native void arraycopy(Object src, int src_pos, Object dst, int dst_pos, int length); in arraycopy()
/art/compiler/utils/arm/
Dassembler_arm.cc1549 ArmManagedRegister dst = mdest.AsArm(); in LoadRef() local
1556 ArmManagedRegister dst = mdest.AsArm(); in LoadRef() local
1563 ArmManagedRegister dst = mdest.AsArm(); in LoadRawPtr() local
1587 ArmManagedRegister dst = m_dst.AsArm(); in EmitLoad() local
1614 ArmManagedRegister dst = m_dst.AsArm(); in LoadRawPtrFromThread() local
1664 ArmManagedRegister dst = m_dst.AsArm(); in Move() local
/art/compiler/jni/
Djni_compiler_test.cc644 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, … in my_arraycopy()
/art/compiler/utils/mips/
Dassembler_mips.cc471 MipsManagedRegister dst = m_dst.AsMips(); in EmitLoad() local