Home
last modified time | relevance | path

Searched refs:source (Results 76 – 97 of 97) sorted by relevance

1234

/art/
DNOTICE40 including but not limited to software source code, documentation
41 source, and configuration files.
69 communication on electronic mailing lists, source code control systems,
/art/libartbase/base/
Dmem_map.h114 bool ReplaceWith(/*in-out*/MemMap* source, /*out*/std::string* error);
/art/test/954-invoke-polymorphic-verifier/smali/
DMain.smali19 .source "Main.smali"
DVarHandleHappyAccessors.smali16 .source "VarHandleHappyAccessors.smali"
/art/openjdkjvmti/
Dti_redefine.cc2643 art::ObjPtr<art::mirror::Object> source, in CopyField() argument
2649 new_field->SetObject<false>(target, old_field.GetObject(source)); in CopyField()
2654 new_field->Set##TYPE<false>(target, old_field.Get##TYPE(source)); \ in CopyField()
2676 art::ObjPtr<art::mirror::Object> source, in CopyFields() argument
2687 CopyField(target, new_field, source, f); in CopyFields()
2691 is_static, target, target_class->GetSuperClass(), source, source_class->GetSuperClass()); in CopyFields()
2739 art::ObjPtr<art::mirror::Object> source, in CopyAndClearFields() argument
2743 CopyFields(is_static, target, target_class, source, source_class); in CopyAndClearFields()
2745 target->SetLockWord(source->GetLockWord(false), false); in CopyAndClearFields()
2747 source->SetLockWord(art::LockWord::Default(), false); in CopyAndClearFields()
[all …]
/art/compiler/optimizing/
Dcode_generator_x86_64.h300 void PushOntoFPStack(Location source, uint32_t temp_offset,
425 void Move(Location destination, Location source);
Dinstruction_simplifier.cc2214 HInstruction* source = instruction->InputAt(0); in SimplifySystemArrayCopy() local
2218 if (CanEnsureNotNullAt(source, instruction)) { in SimplifySystemArrayCopy()
2224 if (destination == source) { in SimplifySystemArrayCopy()
2228 if (IsArrayLengthOf(count, source)) { in SimplifySystemArrayCopy()
2256 ReferenceTypeInfo source_rti = source->GetReferenceTypeInfo(); in SimplifySystemArrayCopy()
Dcode_generator.cc556 Location source = operands->GetSource(); in FinishCriticalNativeFrameSetup() local
558 operands->SetSource(Location::StackSlot(source.GetStackIndex() + out_frame_size)); in FinishCriticalNativeFrameSetup()
560 operands->SetSource(Location::DoubleStackSlot(source.GetStackIndex() + out_frame_size)); in FinishCriticalNativeFrameSetup()
Dintrinsics_arm64.cc816 Register source = value; in GenUnsafePut() local
829 source = temp; in GenUnsafePut()
833 codegen->StoreRelease(invoke, type, source, mem_op, /* needs_null_check= */ false); in GenUnsafePut()
835 codegen->Store(type, source, mem_op); in GenUnsafePut()
2842 MemOperand source = HeapOperand( in VisitIntegerValueOf() local
2844 codegen_->Load(DataType::Type::kReference, out, source); in VisitIntegerValueOf()
Dcode_generator_arm_vixl.h512 void Move32(Location destination, Location source);
Dnodes.h7776 MoveOperands(Location source, in MoveOperands() argument
7780 : source_(source), destination_(destination), type_(type), instruction_(instruction) {} in MoveOperands()
7860 void AddMove(Location source, in AddMove() argument
7864 DCHECK(source.IsValid()); in AddMove()
7888 << source << " ==> " << destination; in AddMove()
7891 moves_.emplace_back(source, destination, type, instruction); in AddMove()
Dintrinsics_arm_vixl.cc803 vixl32::Register source = value; in GenUnsafePut() local
808 source = temp; in GenUnsafePut()
810 __ Str(source, MemOperand(base, offset)); in GenUnsafePut()
/art/dex2oat/linker/
Dimage_writer.cc95 static ArrayRef<const uint8_t> MaybeCompressData(ArrayRef<const uint8_t> source, in MaybeCompressData() argument
102 storage->resize(LZ4_compressBound(source.size())); in MaybeCompressData()
104 reinterpret_cast<char*>(const_cast<uint8_t*>(source.data())), in MaybeCompressData()
106 source.size(), in MaybeCompressData()
113 storage->resize(LZ4_compressBound(source.size())); in MaybeCompressData()
115 reinterpret_cast<const char*>(const_cast<uint8_t*>(source.data())), in MaybeCompressData()
117 source.size(), in MaybeCompressData()
124 return source; in MaybeCompressData()
134 VLOG(compiler) << "Compressed from " << source.size() << " to " << storage->size() << " in " in MaybeCompressData()
137 std::vector<uint8_t> decompressed(source.size()); in MaybeCompressData()
[all …]
Doat_writer.cc303 DexFileSource source,
3904 DexFileSource source, in OatDexFile() argument
3908 : source_(std::move(source)), in OatDexFile()
/art/test/161-final-abstract-class/smali/
DMain.smali40 .source "Main.java"
/art/test/
DREADME.chroot.md5 a locally built source tree on a device running (almost any) system image and
/art/libnativeloader/
DREADME.md32 with the [VNDK-SP](https://source.android.com/devices/architecture/vndk#sp-hal)
/art/test/1929-exception-catch-exception/smali/art/
DTest1929$Impl.smali22 .source "Test1929.java"
/art/runtime/
Delf_file.cc298 bool ElfFileImpl<ElfTypes>::CheckSectionsLinked(const uint8_t* source, in CheckSectionsLinked() argument
312 if (Begin() + section_header->sh_offset == source) { in CheckSectionsLinked()
Dclass_linker.cc1546 mirror::StringDexCachePair source = in VisitInternedStringReferences() local
1548 ObjPtr<mirror::String> referred_string = source.object.Read(); in VisitInternedStringReferences()
1556 mirror::StringDexCachePair(visited, source.index), std::memory_order_relaxed); in VisitInternedStringReferences()
4519 std::string source; in InsertClass() local
4521 source += " from "; in InsertClass()
4522 source += dex_cache->GetLocation()->ToModifiedUtf8(); in InsertClass()
4524 LOG(INFO) << "Loaded class " << descriptor << source; in InsertClass()
/art/runtime/gc/space/
Dimage_space.cc359 RelocationRange(uintptr_t source, uintptr_t dest, uintptr_t length) in RelocationRange() argument
360 : source_(source), in RelocationRange()
/art/test/626-checker-arm64-scratch-register/smali/
DMain2.smali171 # Original java source:

1234