Home
last modified time | relevance | path

Searched refs:original (Results 1 – 18 of 18) sorted by relevance

/art/openjdkjvmti/
Dfixed_up_dex_file.cc90 std::unique_ptr<FixedUpDexFile> FixedUpDexFile::Create(const art::DexFile& original, in Create() argument
103 if (original.IsCompactDexFile() || original.HasHiddenapiClassData()) { in Create()
121 original.GetLocation().c_str(), in Create()
122 &original, in Create()
131 data.resize(original.Size()); in Create()
132 memcpy(data.data(), original.Begin(), original.Size()); in Create()
151 new_dex_file->SetHiddenapiDomain(original.GetHiddenapiDomain()); in Create()
153 DoDexUnquicken(*new_dex_file, original); in Create()
Dfixed_up_dex_file.h52 static std::unique_ptr<FixedUpDexFile> Create(const art::DexFile& original,
Dti_redefine.cc97 art::ArtMethod* FindObsoleteVersion(art::ArtMethod* original) const in FindObsoleteVersion()
99 auto method_pair = id_map_.find(original); in FindObsoleteVersion()
110 void RecordObsolete(art::ArtMethod* original, art::ArtMethod* obsolete) in RecordObsolete() argument
112 DCHECK(original != nullptr); in RecordObsolete()
121 id_map_.insert({original, slot}); in RecordObsolete()
/art/libartbase/base/
Dbit_field.h83 static uintptr_t Update(T value, uintptr_t original) { in Update() argument
86 (~MaskInPlace() & original); in Update()
/art/test/981-dedup-original-dex/
Dinfo.txt4 classes original dex files.
/art/test/147-stripped-dex-fallback/
Dinfo.txt2 no image and the original dex code has been stripped.
/art/tools/amm/models/
DDexCode.md3 The value of the Dex Code model is the sum of the original uncompressed file
/art/test/463-checker-boolean-simplifier/smali/
DMain2.smali63 # The original java source of this method:
120 # The original java source of this method:
185 # The original java source of this method:
238 # The original java source of this method:
/art/test/509-pre-header/smali/
DPreHeader.smali19 # Label names in this method are taken from the original apk
/art/compiler/optimizing/
Doptimizing_unit_test.h270 inline std::string Patch(const std::string& original, const diff_t& diff) { in Patch() argument
271 std::string result = original; in Patch()
/art/runtime/
Doat_file_manager.cc280 static void AddNext(/*inout*/DexFileAndClassPair& original, in AddNext() argument
282 if (original.DexFileHasMoreClasses()) { in AddNext()
283 original.Next(); in AddNext()
284 heap.push(std::move(original)); in AddNext()
/art/
DNOTICE56 represent, as a whole, an original work of authorship. For the purposes
62 the original version of the Work and any modifications or additions
/art/runtime/jni/
Djni_internal_test.cc2033 jobject original = env_->NewStringUTF(""); in TEST_F() local
2034 ASSERT_NE(original, nullptr); in TEST_F()
2041 outer = env_->NewLocalRef(original); in TEST_F()
2050 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(original)); in TEST_F()
2068 EXPECT_EQ(JNILocalRefType, env_->GetObjectRefType(original)); in TEST_F()
/art/runtime/arch/arm/
Dquick_entrypoints_arm.S702 @ unlocked case - store r3: original lock word plus thread id, preserved read barrier bits.
707 .Lnot_unlocked: @ r2: original lock word, r1: thread_id, r3: r2 ^ r1
/art/runtime/interpreter/mterp/x86/
Darithmetic.S282 fnstcw LOCAL0(%esp) # remember original rounding mode
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1263 # $t1: original lock word, $t0: thread_id with count of 0 and zero read barrier bits
1333 # t1: original lock word
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S1317 # $t1: original lock word, $t0: thread_id with count of 0 and zero read barrier bits
1390 # t1: original lock word
/art/test/626-checker-arm64-scratch-register/smali/
DMain2.smali179 # // Reordering these lines make make the original (b/32545705)