/art/test/439-swap-double/ |
D | Android.bp | 3 // Build rules for ART run-test `439-swap-double`. 16 name: "art-run-test-439-swap-double", 21 ":art-run-test-439-swap-double-expected-stdout", 22 ":art-run-test-439-swap-double-expected-stderr", 28 name: "art-run-test-439-swap-double-expected-stdout", 29 out: ["art-run-test-439-swap-double-expected-stdout.txt"], 36 name: "art-run-test-439-swap-double-expected-stderr", 37 out: ["art-run-test-439-swap-double-expected-stderr.txt"],
|
D | info.txt | 1 Test for the optimizing compiler's parallel swap support in
|
/art/test/1972-jni-id-swap-indices/ |
D | Android.bp | 3 // Build rules for ART run-test `1972-jni-id-swap-indices`. 16 name: "art-run-test-1972-jni-id-swap-indices", 21 ":art-run-test-1972-jni-id-swap-indices-expected-stdout", 22 ":art-run-test-1972-jni-id-swap-indices-expected-stderr", 28 name: "art-run-test-1972-jni-id-swap-indices-expected-stdout", 29 out: ["art-run-test-1972-jni-id-swap-indices-expected-stdout.txt"], 36 name: "art-run-test-1972-jni-id-swap-indices-expected-stderr", 37 out: ["art-run-test-1972-jni-id-swap-indices-expected-stderr.txt"],
|
D | info.txt | 3 Also tests that WellKnownClasses jmethodIDs are indices after swap.
|
/art/test/1973-jni-id-swap-pointer/ |
D | Android.bp | 3 // Build rules for ART run-test `1973-jni-id-swap-pointer`. 16 name: "art-run-test-1973-jni-id-swap-pointer", 21 ":art-run-test-1973-jni-id-swap-pointer-expected-stdout", 22 ":art-run-test-1973-jni-id-swap-pointer-expected-stderr", 28 name: "art-run-test-1973-jni-id-swap-pointer-expected-stdout", 29 out: ["art-run-test-1973-jni-id-swap-pointer-expected-stdout.txt"], 36 name: "art-run-test-1973-jni-id-swap-pointer-expected-stderr", 37 out: ["art-run-test-1973-jni-id-swap-pointer-expected-stderr.txt"],
|
/art/libartbase/base/ |
D | hash_set.h | 358 HashSet(std::move(other)).swap(*this); // NOLINT [runtime/explicit] [5] 363 HashSet(other).swap(*this); // NOLINT(runtime/explicit) - a case of lint gone mad. 522 void swap(HashSet& other) { in swap() function 524 using std::swap; in swap() 525 swap(allocfn_, other.allocfn_); in swap() 526 swap(hashfn_, other.hashfn_); in swap() 527 swap(emptyfn_, other.emptyfn_); in swap() 528 swap(pred_, other.pred_); in swap() 529 std::swap(data_, other.data_); in swap() 530 std::swap(num_buckets_, other.num_buckets_); in swap() [all …]
|
D | mem_map.h | 73 swap(other); 81 void swap(MemMap& other); 416 inline void swap(MemMap& lhs, MemMap& rhs) { in swap() function 417 lhs.swap(rhs); in swap()
|
D | intrusive_forward_list.h | 158 tmp.swap(*this); 186 tmp.swap(*this); in assign() 218 void swap(IntrusiveForwardList& other) { in swap() function 219 std::swap(first_.next_hook, other.first_.next_hook); in swap() 373 reversed.swap(*this); in reverse() 401 void swap(IntrusiveForwardList<T, HookTraits>& lhs, IntrusiveForwardList<T, HookTraits>& rhs) { in swap() function 402 lhs.swap(rhs); in swap()
|
D | dchecked_vector.h | 147 void swap(dchecked_vector& other) { Base::swap(other); } in swap() function 196 void swap(dchecked_vector<T, Alloc>& lhs, dchecked_vector<T, Alloc>& rhs) { in swap() function 197 lhs.swap(rhs); in swap()
|
D | mem_map.cc | 591 swap(other); in MemMap() 644 void MemMap::swap(MemMap& other) { in swap() function in art::MemMap 669 name_.swap(other.name_); in SwapMembers() 670 std::swap(begin_, other.begin_); in SwapMembers() 671 std::swap(size_, other.size_); in SwapMembers() 672 std::swap(base_begin_, other.base_begin_); in SwapMembers() 673 std::swap(base_size_, other.base_size_); in SwapMembers() 674 std::swap(prot_, other.prot_); in SwapMembers() 675 std::swap(reuse_, other.reuse_); in SwapMembers() 676 std::swap(already_unmapped_, other.already_unmapped_); in SwapMembers() [all …]
|
D | safe_map.h | 70 void swap(Self& other) { map_.swap(other.map_); } in swap() function
|
D | intrusive_forward_list_test.cc | 423 ref1.swap(ref2); in SwapClear() 424 ifl1.swap(ifl2); in SwapClear() 431 swap(ref1, ref2); in SwapClear() 432 swap(ifl1, ifl2); in SwapClear()
|
D | common_art_test.cc | 114 std::swap(filename_, other.filename_); in operator =() 115 std::swap(file_, other.file_); in operator =()
|
/art/runtime/gc/space/ |
D | space.cc | 99 std::swap(live_bitmap, mark_bitmap); in Sweep() 129 std::swap(live_bitmap_, mark_bitmap_); in SwapBitmaps()
|
D | large_object_space_test.cc | 78 std::swap(requests[j], requests[test_rand(&rand_seed) % requests.size()]); in LargeObjectTest()
|
D | image_space_test.cc | 179 std::swap(bcp[bcp.size() - 2u], bcp[bcp.size() - 1u]); in TEST_F() 180 std::swap(bcp_locations[bcp_locations.size() - 2u], bcp_locations[bcp_locations.size() - 1u]); in TEST_F()
|
/art/runtime/base/ |
D | timing_logger.h | 136 std::swap(data_, other.data_); in TimingData() 139 std::swap(data_, other.data_);
|
/art/dexlayout/ |
D | dex_container.h | 81 temp.swap(data_); in ReleaseData()
|
/art/openjdkjvmti/ |
D | object_tagging.cc | 62 to_send.swap(null_tags_); in SendDelayedFreeEvents()
|
/art/dex2oat/ |
D | common_compiler_driver_test.cc | 90 compiler_options_->image_classes_.swap(*GetImageClasses()); in CreateCompilerDriver()
|
/art/cmdline/ |
D | cmdline_parser.h | 387 help_.swap(sv); in SetHelp() 391 metavar_.swap(sv); in SetMetavar() 395 category_.swap(sv); in SetCategory() 458 category_order_.swap(categories); in OrderCategories()
|
/art/compiler/utils/ |
D | assembler.h | 333 result.first.swap(opcodes_); in ReleaseStreamAndPrepareForDelayedAdvancePC() 334 result.second.swap(delayed_advance_pcs_); in ReleaseStreamAndPrepareForDelayedAdvancePC()
|
/art/test/046-reflect/ |
D | expected-stdout.txt | 99 private static void java.util.Collections.swap(java.lang.Object[],int,int) accessible=false 100 private static void java.util.Collections.swap(java.lang.Object[],int,int) accessible=true
|
/art/runtime/gc/ |
D | task_processor_test.cc | 130 std::swap(orderings[i], orderings[(i * 87654231 + 12345) % orderings.size()]); in TEST_F()
|
/art/runtime/ |
D | aot_class_linker.cc | 234 updatable_boot_class_path_descriptor_prefixes_.swap(prefixes); in SetUpdatableBootClassPackages()
|