Home
last modified time | relevance | path

Searched refs:copy (Results 1 – 25 of 29) sorted by relevance

12

/art/test/011-array-copy/
Dexpected.txt5 copy: 0,0,0: [0, 1, 2, 3, 4, 5, 6, 7]
6 copy: 0,0,8: [0, 1, 2, 3, 4, 5, 6, 7]
7 copy: 0,2,4: [0, 1, 0, 1, 2, 3, 6, 7]
8 copy: 2,0,4: [2, 3, 4, 5, 4, 5, 6, 7]
9 copy: 1,3,4: [0, 1, 2, 1, 2, 3, 4, 7]
10 copy: 3,1,4: [0, 3, 4, 5, 6, 5, 6, 7]
11 copy: 3,1,5: [0, 3, 4, 5, 6, 7, 6, 7]
12 copy: 1,3,5: [0, 1, 2, 1, 2, 3, 4, 5]
13 copy: 0,3,5: [0, 1, 2, 0, 1, 2, 3, 4]
14 copy: 3,0,5: [3, 4, 5, 6, 7, 5, 6, 7]
[all …]
/art/compiler/
Dimage_writer.cc991 Object* copy = reinterpret_cast<Object*>(dst); in CopyAndFixupObjectsCallback() local
994 copy->SetLockWord(LockWord(), false); in CopyAndFixupObjectsCallback()
995 image_writer->FixupObject(obj, copy); in CopyAndFixupObjectsCallback()
1001 FixupVisitor(ImageWriter* image_writer, Object* copy) : image_writer_(image_writer), copy_(copy) { in FixupVisitor() argument
1028 FixupClassVisitor(ImageWriter* image_writer, Object* copy) : FixupVisitor(image_writer, copy) { in FixupClassVisitor() argument
1049 void ImageWriter::FixupObject(Object* orig, Object* copy) { in FixupObject() argument
1051 DCHECK(copy != nullptr); in FixupObject()
1056 copy->SetReadBarrierPointer(GetImageAddress(orig)); in FixupObject()
1057 DCHECK_EQ(copy->GetReadBarrierPointer(), GetImageAddress(orig)); in FixupObject()
1061 FixupClassVisitor visitor(this, copy); in FixupObject()
[all …]
Dimage_writer.h220 void FixupMethod(mirror::ArtMethod* orig, mirror::ArtMethod* copy)
222 void FixupObject(mirror::Object* orig, mirror::Object* copy)
DAndroid.mk304 $(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,)/libcom…
306 $(eval $(call copy-one-file, $(call intermediates-dir-for,STATIC_LIBRARIES,libcompiler_rt,,,t)/libc…
/art/patchoat/
Dpatchoat.h102 void FixupMethod(mirror::ArtMethod* object, mirror::ArtMethod* copy)
129 PatchVisitor(PatchOat* patcher, mirror::Object* copy) : patcher_(patcher), copy_(copy) {} in PatchVisitor() argument
Dpatchoat.cc513 mirror::Object* copy = RelocatedCopyOf(object); in VisitObject() local
514 CHECK(copy != nullptr); in VisitObject()
519 copy->SetReadBarrierPointer(moved_to); in VisitObject()
520 DCHECK_EQ(copy->GetReadBarrierPointer(), moved_to); in VisitObject()
523 PatchOat::PatchVisitor visitor(this, copy); in VisitObject()
526 FixupMethod(down_cast<mirror::ArtMethod*>(object), down_cast<mirror::ArtMethod*>(copy)); in VisitObject()
530 void PatchOat::FixupMethod(mirror::ArtMethod* object, mirror::ArtMethod* copy) { in FixupMethod() argument
538 copy->SetEntryPointFromPortableCompiledCodePtrSize(reinterpret_cast<void*>(portable + delta_), in FixupMethod()
545 copy->SetEntryPointFromQuickCompiledCodePtrSize(reinterpret_cast<void*>(quick + delta_), in FixupMethod()
551 copy->SetEntryPointFromInterpreterPtrSize( in FixupMethod()
[all …]
/art/runtime/mirror/
Dobject.cc130 Object* copy; in Clone() local
133 copy = heap->AllocObject<true>(self, GetClass(), num_bytes, visitor); in Clone()
135 copy = heap->AllocNonMovableObject<true>(self, GetClass(), num_bytes, visitor); in Clone()
137 return copy; in Clone()
/art/runtime/arch/arm/
Dportable_entrypoints_arm.S50 ldr r1, [sp, #4] @ copy arg value for r1
51 ldr r2, [sp, #8] @ copy arg value for r2
52 ldr r3, [sp, #12] @ copy arg value for r3
Dquick_entrypoints_arm.S320 ldr r1, [sp, #4] @ copy arg value for r1
321 ldr r2, [sp, #8] @ copy arg value for r2
322 ldr r3, [sp, #12] @ copy arg value for r3
/art/tools/
DAndroid.mk28 $(copy-file-to-new-target)
Dcpplint.py79 import copy
1559 self.pp_stack.append(_PreprocessorInfo(copy.deepcopy(self.stack)))
1568 self.pp_stack[-1].stack_before_else = copy.deepcopy(self.stack)
1571 self.stack = copy.deepcopy(self.pp_stack[-1].stack_before_if)
3717 include_state = include_state.copy()
/art/test/701-easy-div-rem/
DgenMain.py35 local_vars = default_vars.copy()
/art/compiler/sea_ir/types/
Dtype_inference.cc150 std::copy(phi_instructions->begin(), phi_instructions->end(), std::back_inserter(worklist)); in ComputeTypes()
152 std::copy(instructions->begin(), instructions->end(), std::back_inserter(worklist)); in ComputeTypes()
/art/test/097-duplicate-method/src/
DTest.j5 ; You may obtain a copy of the License at
/art/runtime/base/
Dstringpiece.cc28 int StringPiece::copy(char* buf, size_type n, size_type pos) const { in copy() function in art::StringPiece
Dstringpiece.h148 int copy(char* buf, size_type n, size_type pos = 0) const;
/art/
DNOTICE108 Derivative Works a copy of this License; and
121 include a readable copy of the attribution notices contained
212 Permission is hereby granted, free of charge, to any person obtaining a copy of
215 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
/art/runtime/
Ddex_file_verifier_test.cc100 std::copy(tmp.begin(), tmp.end(), dst.get()); in DecodeBase64()
Ddex_file_test.cc105 std::copy(tmp.begin(), tmp.end(), dst.get()); in DecodeBase64()
/art/compiler/utils/
Darena_allocator.cc62 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_); in Copy()
Dassembler_test.h618 std::string copy = file.substr(0, space_index - 1); in FileExists() local
621 return stat(copy.c_str(), &buf) == 0; in FileExists()
/art/compiler/dex/quick/mips/
DREADME.mips46 simple solution would be to copy the instruction at branch targets to the
/art/compiler/llvm/
Dart_module.ll6 ;; You may obtain a copy of the License at
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S507 lw $a1, 4($sp) # copy arg value for a1
508 lw $a2, 8($sp) # copy arg value for a2
509 lw $a3, 12($sp) # copy arg value for a3
/art/runtime/gc/accounting/
Dspace_bitmap.cc100 …std::copy(source_bitmap->Begin(), source_bitmap->Begin() + source_bitmap->Size() / kWordSize, Begi… in CopyFrom()

12