/art/test/011-array-copy/ |
D | expected-stdout.txt | 5 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 …]
|
D | Android.bp | 3 // Build rules for ART run-test `011-array-copy`. 16 name: "art-run-test-011-array-copy", 21 ":art-run-test-011-array-copy-expected-stdout", 22 ":art-run-test-011-array-copy-expected-stderr", 28 name: "art-run-test-011-array-copy-expected-stdout", 29 out: ["art-run-test-011-array-copy-expected-stdout.txt"], 36 name: "art-run-test-011-array-copy-expected-stderr", 37 out: ["art-run-test-011-array-copy-expected-stderr.txt"],
|
/art/test/096-array-copy-concurrent-gc/ |
D | Android.bp | 3 // Build rules for ART run-test `096-array-copy-concurrent-gc`. 16 name: "art-run-test-096-array-copy-concurrent-gc", 21 ":art-run-test-096-array-copy-concurrent-gc-expected-stdout", 22 ":art-run-test-096-array-copy-concurrent-gc-expected-stderr", 28 name: "art-run-test-096-array-copy-concurrent-gc-expected-stdout", 29 out: ["art-run-test-096-array-copy-concurrent-gc-expected-stdout.txt"], 36 name: "art-run-test-096-array-copy-concurrent-gc-expected-stderr", 37 out: ["art-run-test-096-array-copy-concurrent-gc-expected-stderr.txt"],
|
/art/libartbase/base/ |
D | transform_array_ref_test.cc | 53 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST() 57 std::copy(taref.cbegin(), taref.cend(), std::back_inserter(output)); in TEST() 61 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST() 65 std::copy(taref.crbegin(), taref.crend(), std::back_inserter(output)); in TEST() 93 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST() 97 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST() 127 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST() 131 std::copy(taref.cbegin(), taref.cend(), std::back_inserter(output)); in TEST() 135 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST() 139 std::copy(taref.crbegin(), taref.crend(), std::back_inserter(output)); in TEST() [all …]
|
D | transform_iterator_test.cc | 71 std::copy(MakeTransformIterator(input.begin(), add1), in TEST() 77 std::copy(MakeTransformIterator(input.cbegin(), add1), in TEST() 83 std::copy(MakeTransformIterator(input.rbegin(), add1), in TEST() 89 std::copy(MakeTransformIterator(input.crbegin(), add1), in TEST() 170 std::copy(MakeTransformIterator(input.begin(), sub1), in TEST() 176 std::copy(MakeTransformIterator(input.cbegin(), sub1), in TEST() 182 std::copy(MakeTransformIterator(input.rbegin(), sub1), in TEST() 188 std::copy(MakeTransformIterator(input.crbegin(), sub1), in TEST() 218 std::copy(MakeTransformIterator(input.begin(), mul3), in TEST() 224 std::copy(MakeTransformIterator(input.cbegin(), mul3), in TEST() [all …]
|
D | bit_string.h | 257 BitString copy = *this; in Truncate() local 262 StorageType data = BitFieldClear(copy.storage_, lsb, bit_size); in Truncate() 263 copy.storage_ = data; in Truncate() 266 return copy; in Truncate()
|
/art/runtime/ |
D | stack_map.cc | 66 CodeInfo copy; // Copy to dead-code-eliminate all fields that we do not need. in DecodeGcMasksOnly() local 67 copy.stack_maps_ = code_info.stack_maps_; in DecodeGcMasksOnly() 68 copy.register_masks_ = code_info.register_masks_; in DecodeGcMasksOnly() 69 copy.stack_masks_ = code_info.stack_masks_; in DecodeGcMasksOnly() 70 return copy; in DecodeGcMasksOnly() 75 CodeInfo copy; // Copy to dead-code-eliminate all fields that we do not need. in DecodeInlineInfoOnly() local 76 copy.number_of_dex_registers_ = code_info.number_of_dex_registers_; in DecodeInlineInfoOnly() 77 copy.stack_maps_ = code_info.stack_maps_; in DecodeInlineInfoOnly() 78 copy.inline_infos_ = code_info.inline_infos_; in DecodeInlineInfoOnly() 79 copy.method_infos_ = code_info.method_infos_; in DecodeInlineInfoOnly() [all …]
|
D | runtime_image.cc | 899 ArtMethod* copy = &dest_array->At(i); in CopyMethodArrays() local 904 copy->GetDeclaringClassAddressWithoutBarrier()->Assign( in CopyMethodArrays() 910 copy->GetDeclaringClassAddressWithoutBarrier()->Assign( in CopyMethodArrays() 920 reinterpret_cast<uintptr_t>(copy) - reinterpret_cast<uintptr_t>(art_methods_.data()); in CopyMethodArrays() 926 copy->SetHasSingleImplementation(false); in CopyMethodArrays() 927 copy->SetSingleImplementation(nullptr, kRuntimePointerSize); in CopyMethodArrays() 949 copy->SetEntryPointFromQuickCompiledCode(header.GetOatAddress(stub)); in CopyMethodArrays() 955 copy->SetEntryPointFromJni(header.GetOatAddress(stub_type)); in CopyMethodArrays() 961 copy->SetDataPtrSize( in CopyMethodArrays() 1207 mirror::Object* copy = in operator ()() local [all …]
|
D | class_table.h | 56 TableSlot(const TableSlot& copy) : data_(copy.data_.load(std::memory_order_relaxed)) {} in TableSlot() argument 63 TableSlot& operator=(const TableSlot& copy) { 64 data_.store(copy.data_.load(std::memory_order_relaxed), std::memory_order_relaxed);
|
/art/oatdump/ |
D | oatdump_test.h | 278 size_t copy = std::min(kLineMax - line_len, len); variable 279 memcpy(&line[line_len], buf, copy); 280 buf += copy; 281 len -= copy; 294 copy -= trim_space(copy); 299 line_len += copy; 348 std::copy(exec_argv.begin(), exec_argv.end(), std::ostream_iterator<std::string>(cmd, " "));
|
/art/tools/jvmti-agents/simple-profile/ |
D | simple_profile.cc | 83 void DoDump(jvmtiEnv* jvmti, JNIEnv* jni, const std::unordered_map<jmethodID, uint64_t>& copy); 142 std::unordered_map<jmethodID, uint64_t> copy; in RunDumpLoop() local 152 copy = method_counts_; in RunDumpLoop() 154 DoDump(jvmti, env, std::move(copy)); in RunDumpLoop() 159 std::unordered_map<jmethodID, uint64_t> copy; in Shutdown() local 166 copy = method_counts_; in Shutdown() 170 DoDump(jvmti, jni, std::move(copy)); in Shutdown() 324 const std::unordered_map<jmethodID, uint64_t>& copy) { in DoDump() argument 328 for (auto [meth, cnt] : copy) { in DoDump()
|
/art/test/610-arraycopy/ |
D | info.txt | 2 when doing the copy on the same array.
|
/art/tools/dexfuzz/src/dexfuzz/ |
D | StreamConsumer.java | 98 List<String> copy = new ArrayList<String>(output); in getOutput() local 99 return copy; in getOutput()
|
/art/build/ |
D | Android.common_path.mk | 72 $(copy-file-to-target) 78 $(copy-file-to-target) 81 $(copy-file-to-target)
|
/art/dt_fd_forward/ |
D | LICENSE | 21 version 2 for more details (a copy is included in the LICENSE file that 24 You should have received a copy of the GNU General Public License version
|
/art/openjdkjvmti/ |
D | LICENSE | 20 version 2 for more details (a copy is included in the LICENSE file that 23 You should have received a copy of the GNU General Public License version
|
/art/openjdkjvm/ |
D | LICENSE | 20 version 2 for more details (a copy is included in the LICENSE file that 23 You should have received a copy of the GNU General Public License version
|
/art/dex2oat/linker/ |
D | oat_writer_test.cc | 133 CopyOption copy, in WriteElf() argument 147 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify, copy); in WriteElf() 156 CopyOption copy, in WriteElf() argument 168 return DoWriteElf(vdex_file, oat_file, oat_writer, key_value_store, verify, copy); in WriteElf() 176 CopyOption copy) { in DoWriteElf() argument 188 copy, in DoWriteElf() 305 void TestZipFileInput(bool verify, CopyOption copy); 712 void OatTest::TestZipFileInput(bool verify, CopyOption copy) { in TestZipFileInput() argument 768 copy, in TestZipFileInput() 819 copy); in TestZipFileInput()
|
/art/libdexfile/dex/ |
D | base64_test_util.h | 94 std::copy(tmp.begin(), tmp.end(), dst.get()); in DecodeBase64()
|
/art/test/VerifierDeps/ |
D | MySub1SoftVerificationFailure.smali | 5 # You may obtain a copy of the License at
|
D | MySub2SoftVerificationFailure.smali | 5 # You may obtain a copy of the License at
|
D | MyClassWithNoSuper.smali | 5 # You may obtain a copy of the License at
|
/art/test/HiddenApiStubs/ |
D | HiddenApi | 6 * You may obtain a copy of the License at
|
/art/test/ArrayClassWithUnresolvedComponent/ |
D | ClassWithMissingSuper.smali | 5 # You may obtain a copy of the License at
|
/art/test/166-bad-interface-super/jasmin/ |
D | BadSuper1.j | 5 ; You may obtain a copy of the License at
|