Home
last modified time | relevance | path

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

12

/art/compiler/utils/x86/
Dassembler_x86.cc105 void X86Assembler::movl(Register dst, const Immediate& imm) { in movl()
112 void X86Assembler::movl(Register dst, Register src) { in movl()
119 void X86Assembler::movl(Register dst, const Address& src) { in movl()
126 void X86Assembler::movl(const Address& dst, Register src) { in movl()
133 void X86Assembler::movl(const Address& dst, const Immediate& imm) { in movl()
140 void X86Assembler::movl(const Address& dst, Label* lbl) { in movl()
147 void X86Assembler::movzxb(Register dst, ByteRegister src) { in movzxb()
155 void X86Assembler::movzxb(Register dst, const Address& src) { in movzxb()
163 void X86Assembler::movsxb(Register dst, ByteRegister src) { in movsxb()
171 void X86Assembler::movsxb(Register dst, const Address& src) { in movsxb()
[all …]
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc105 void X86_64Assembler::movq(CpuRegister dst, const Immediate& imm) { in movq()
121 void X86_64Assembler::movl(CpuRegister dst, const Immediate& imm) { in movl()
129 void X86_64Assembler::movq(CpuRegister dst, CpuRegister src) { in movq()
138 void X86_64Assembler::movl(CpuRegister dst, CpuRegister src) { in movl()
146 void X86_64Assembler::movq(CpuRegister dst, const Address& src) { in movq()
154 void X86_64Assembler::movl(CpuRegister dst, const Address& src) { in movl()
162 void X86_64Assembler::movq(const Address& dst, CpuRegister src) { in movq()
170 void X86_64Assembler::movl(const Address& dst, CpuRegister src) { in movl()
177 void X86_64Assembler::movl(const Address& dst, const Immediate& imm) { in movl()
185 void X86_64Assembler::movzxb(CpuRegister dst, CpuRegister src) { in movzxb()
[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()
Dreflection-inl.h32 const JValue& src, JValue* dst) { in ConvertPrimitiveValue()
Ddex_file_verifier_test.cc94 std::unique_ptr<byte[]> dst(new byte[tmp.size()]); in DecodeBase64() local
Ddex_file_test.cc99 std::unique_ptr<byte[]> dst(new byte[tmp.size()]); in DecodeBase64() local
Ddebugger.cc1308 uint8_t* dst = expandBufAddSpace(pReply, count * width); in OutputArray() local
1343 T* dst = reinterpret_cast<T*>(a->GetRawData(sizeof(T), offset)); in CopyArrayData() local
1353 mirror::Array* dst = DecodeArray(array_id, status); in SetArrayElements() local
/art/compiler/utils/arm/
Dassembler_arm.cc505 ArmManagedRegister dst = mdest.AsArm(); in LoadRef() local
515 ArmManagedRegister dst = mdest.AsArm(); in LoadRef() local
522 ArmManagedRegister dst = mdest.AsArm(); in LoadRawPtr() local
546 ArmManagedRegister dst = m_dst.AsArm(); in EmitLoad() local
573 ArmManagedRegister dst = m_dst.AsArm(); in LoadRawPtrFromThread32() local
623 ArmManagedRegister dst = m_dst.AsArm(); in Move() local
/art/compiler/
Dimage_writer.h89 byte* dst = image_->Begin() + offset; in GetLocalAddress() local
Dimage_writer.cc602 byte* dst = image_writer->image_->Begin() + offset; in CopyAndFixupObjectsCallback() local
/art/runtime/interpreter/
Dinterpreter_switch_impl.cc281 uint4_t dst = inst->VRegA_11n(inst_data); in ExecuteSwitchImpl() local
292 uint8_t dst = inst->VRegA_21s(inst_data); in ExecuteSwitchImpl() local
303 uint8_t dst = inst->VRegA_31i(inst_data); in ExecuteSwitchImpl() local
314 uint8_t dst = inst->VRegA_21h(inst_data); in ExecuteSwitchImpl() local
Dinterpreter_goto_table_impl.cc368 uint32_t dst = inst->VRegA_11n(inst_data); in ExecuteGotoImpl() local
379 uint32_t dst = inst->VRegA_21s(inst_data); in ExecuteGotoImpl() local
390 uint32_t dst = inst->VRegA_31i(inst_data); in ExecuteGotoImpl() local
401 uint32_t dst = inst->VRegA_21h(inst_data); in ExecuteGotoImpl() local
Dinterpreter_common.cc885 …ObjectArray<Object>* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsObjectArray<Object>(); in UnstartedRuntimeInvoke() local
891 CharArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsCharArray(); in UnstartedRuntimeInvoke() local
897 IntArray* dst = shadow_frame->GetVRegReference(arg_offset + 2)->AsIntArray(); in UnstartedRuntimeInvoke() local
/art/compiler/utils/arm64/
Dassembler_arm64.cc288 Arm64ManagedRegister dst = m_dst.AsArm64(); in LoadRef() local
295 Arm64ManagedRegister dst = m_dst.AsArm64(); in LoadRef() local
303 Arm64ManagedRegister dst = m_dst.AsArm64(); in LoadRawPtr() local
313 Arm64ManagedRegister dst = m_dst.AsArm64(); in LoadRawPtrFromThread64() local
320 Arm64ManagedRegister dst = m_dst.AsArm64(); in Move() local
/art/runtime/verifier/
Dregister_line.h295 void CopyRegToLockDepth(size_t dst, size_t src) { in CopyRegToLockDepth()
/art/runtime/gc/
Dheap.h375 void WriteBarrierField(const mirror::Object* dst, MemberOffset /*offset*/, in WriteBarrierField()
381 void WriteBarrierArray(const mirror::Object* dst, int /*start_offset*/, in WriteBarrierArray()
/art/runtime/native/
Ddalvik_system_DexFile.cc263 ScopedFd dst(open(newfile, O_WRONLY|O_CREAT|O_TRUNC, 0600)); in CopyProfileFile() local
/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/mips/
Dassembler_mips.cc459 MipsManagedRegister dst = m_dst.AsMips(); in EmitLoad() local

12