Home
last modified time | relevance | path

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

12345678910>>...17

/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 …]
DAndroid.bp3 name: "art-run-test-011-array-copy",
/art/libartbase/base/
Dtransform_array_ref_test.cc54 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST()
58 std::copy(taref.cbegin(), taref.cend(), std::back_inserter(output)); in TEST()
62 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST()
66 std::copy(taref.crbegin(), taref.crend(), std::back_inserter(output)); in TEST()
94 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST()
98 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST()
129 std::copy(taref.begin(), taref.end(), std::back_inserter(output)); in TEST()
133 std::copy(taref.cbegin(), taref.cend(), std::back_inserter(output)); in TEST()
137 std::copy(taref.rbegin(), taref.rend(), std::back_inserter(output)); in TEST()
141 std::copy(taref.crbegin(), taref.crend(), std::back_inserter(output)); in TEST()
[all …]
Dbit_string.h257 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()
Dtransform_iterator_test.cc75 std::copy(MakeTransformIterator(input.begin(), add1), in TEST()
81 std::copy(MakeTransformIterator(input.cbegin(), add1), in TEST()
87 std::copy(MakeTransformIterator(input.rbegin(), add1), in TEST()
93 std::copy(MakeTransformIterator(input.crbegin(), add1), in TEST()
178 std::copy(MakeTransformIterator(input.begin(), sub1), in TEST()
184 std::copy(MakeTransformIterator(input.cbegin(), sub1), in TEST()
190 std::copy(MakeTransformIterator(input.rbegin(), sub1), in TEST()
196 std::copy(MakeTransformIterator(input.crbegin(), sub1), in TEST()
228 std::copy(MakeTransformIterator(input.begin(), mul3), in TEST()
234 std::copy(MakeTransformIterator(input.cbegin(), mul3), in TEST()
[all …]
/art/runtime/
Dstack_map.cc73 CodeInfo copy; // Copy to dead-code-eliminate all fields that we do not need. in DecodeGcMasksOnly() local
74 copy.stack_maps_ = code_info.stack_maps_; in DecodeGcMasksOnly()
75 copy.register_masks_ = code_info.register_masks_; in DecodeGcMasksOnly()
76 copy.stack_masks_ = code_info.stack_masks_; in DecodeGcMasksOnly()
77 return copy; in DecodeGcMasksOnly()
82 CodeInfo copy; // Copy to dead-code-eliminate all fields that we do not need. in DecodeInlineInfoOnly() local
83 copy.number_of_dex_registers_ = code_info.number_of_dex_registers_; in DecodeInlineInfoOnly()
84 copy.stack_maps_ = code_info.stack_maps_; in DecodeInlineInfoOnly()
85 copy.inline_infos_ = code_info.inline_infos_; in DecodeInlineInfoOnly()
86 copy.method_infos_ = code_info.method_infos_; in DecodeInlineInfoOnly()
[all …]
Dclass_table.h56 TableSlot(const TableSlot& copy) : data_(copy.data_.load(std::memory_order_relaxed)) {} in TableSlot() argument
62 TableSlot& operator=(const TableSlot& copy) {
63 data_.store(copy.data_.load(std::memory_order_relaxed), std::memory_order_relaxed);
/art/oatdump/
Doatdump_test.h278 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;
/art/test/677-fsi/
Drun19 exec ${RUN} $@ -Xcompiler-option --copy-dex-files=always --runtime-option -Xonly-use-system-oat-fil…
/art/test/610-arraycopy/
Dinfo.txt2 when doing the copy on the same array.
/art/test/096-array-copy-concurrent-gc/
DAndroid.bp3 name: "art-run-test-096-array-copy-concurrent-gc",
/art/build/
DAndroid.common_path.mk54 $(copy-file-to-target)
57 $(copy-file-to-target)
60 $(copy-file-to-target)
/art/tools/dexfuzz/src/dexfuzz/
DStreamConsumer.java98 List<String> copy = new ArrayList<String>(output); in getOutput() local
99 return copy; in getOutput()
/art/dt_fd_forward/
DNOTICE21 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/
DNOTICE20 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/
DNOTICE20 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/libdexfile/dex/
Dbase64_test_util.h94 std::copy(tmp.begin(), tmp.end(), dst.get()); in DecodeBase64()
/art/test/166-bad-interface-super/jasmin/
DBadSuper1.j5 ; You may obtain a copy of the License at
DBadSuper2.j5 ; You may obtain a copy of the License at
/art/test/VerifierDeps/
DMySub1SoftVerificationFailure.smali5 # You may obtain a copy of the License at
DMyClassWithNoSuper.smali5 # You may obtain a copy of the License at
DMySub2SoftVerificationFailure.smali5 # You may obtain a copy of the License at
DMyClassExtendingInterface.smali5 # You may obtain a copy of the License at
/art/test/HiddenApiStubs/
DHiddenApi6 * You may obtain a copy of the License at
/art/test/976-conflict-no-methods/smali/
DNoMethods.smali6 # * You may obtain a copy of the License at

12345678910>>...17