/art/runtime/base/ |
D | hash_set.h | 262 HashSet(std::move(other)).swap(*this); 267 HashSet(other).swap(*this); // NOLINT(runtime/explicit) - a case of lint gone mad. 406 void swap(HashSet& other) { in swap() function 408 using std::swap; in swap() 409 swap(allocfn_, other.allocfn_); in swap() 410 swap(hashfn_, other.hashfn_); in swap() 411 swap(emptyfn_, other.emptyfn_); in swap() 412 swap(pred_, other.pred_); in swap() 413 std::swap(data_, other.data_); in swap() 414 std::swap(num_buckets_, other.num_buckets_); in swap() [all …]
|
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 | timing_logger.h | 109 std::swap(data_, other.data_); in TimingData() 112 std::swap(data_, other.data_);
|
D | variant_map.h | 365 storage_map_.swap(other.storage_map_);
|
D | hash_set_test.cc | 152 std::swap(hash_seta, hash_setb); in TEST_F()
|
/art/test/439-swap-double/ |
D | info.txt | 1 Test for the optimizing compiler's parallel swap support in
|
/art/compiler/utils/ |
D | intrusive_forward_list.h | 147 tmp.swap(*this); 175 tmp.swap(*this); in assign() 207 void swap(IntrusiveForwardList& other) { in swap() function 208 std::swap(first_.next_hook, other.first_.next_hook); in swap() 362 reversed.swap(*this); in reverse() 390 void swap(IntrusiveForwardList<T, HookTraits>& lhs, IntrusiveForwardList<T, HookTraits>& rhs) { in swap() function 391 lhs.swap(rhs); in swap()
|
D | assembler.h | 333 result.first.swap(opcodes_); in ReleaseStreamAndPrepareForDelayedAdvancePC() 334 result.second.swap(delayed_advance_pcs_); in ReleaseStreamAndPrepareForDelayedAdvancePC()
|
D | intrusive_forward_list_test.cc | 274 ref1.swap(ref2); in TEST() 275 ifl1.swap(ifl2); in TEST() 282 swap(ref1, ref2); in TEST() 283 swap(ifl1, ifl2); in TEST()
|
/art/runtime/gc/space/ |
D | space.cc | 98 std::swap(live_bitmap, mark_bitmap); in Sweep() 134 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps()
|
D | large_object_space_test.cc | 70 std::swap(requests[j], requests[test_rand(&rand_seed) % requests.size()]); in LargeObjectTest()
|
D | large_object_space.cc | 102 live_bitmap_.swap(mark_bitmap_); in SwapBitmaps() 595 std::swap(live_bitmap, mark_bitmap); in Sweep()
|
/art/runtime/ |
D | safe_map.h | 70 void swap(Self& other) { map_.swap(other.map_); } in swap() function
|
D | common_runtime_test.cc | 172 std::swap(filename_, other.filename_); in operator =() 173 std::swap(file_, other.file_); in operator =()
|
D | dex_file_verifier_test.cc | 1448 std::swap(const_cast<uint32_t&>(proto1.parameters_off_), in TEST_F() 1450 std::swap(const_cast<dex::StringIndex&>(proto1.shorty_idx_), in TEST_F()
|
/art/runtime/openjdkjvmti/ |
D | ti_stack.cc | 115 frames.swap(visitor.frames); in Run() 254 self_frames.swap(visitor.frames); in Run() 308 frames.back().swap(closure.frames); in GetAllStackTraces() 469 frames.back().swap(closure.frames); in GetThreadListStackTraces()
|
/art/test/046-reflect/ |
D | expected.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/compiler/optimizing/ |
D | nodes.cc | 1481 new_block->successors_.swap(successors_); in SplitBefore() 1498 new_block->predecessors_.swap(predecessors_); in CreateImmediateDominator() 1526 new_block->successors_.swap(successors_); in SplitBeforeForInlining() 1532 new_block->dominated_blocks_.swap(dominated_blocks_); in SplitBeforeForInlining() 1553 new_block->successors_.swap(successors_); in SplitAfterForInlining() 1559 new_block->dominated_blocks_.swap(dominated_blocks_); in SplitAfterForInlining() 1906 successors_.swap(other->successors_); in MergeWith() 1945 successors_.swap(other->successors_); in MergeWithInlined()
|
D | instruction_builder.cc | 574 std::swap(first, second); in Binop_22s() 585 std::swap(first, second); in Binop_22b()
|
D | induction_var_analysis.cc | 52 scc->swap(*new_scc); in RotateEntryPhiFirst()
|
D | register_allocator_graph_color.cc | 1704 std::swap(from, into); in Coalesce()
|
D | code_generator_arm.cc | 1620 std::swap(cond, opposite); in GenerateLongTestConstant() 1691 std::swap(cond, opposite); in GenerateLongTest() 1728 std::swap(left, right); in GenerateLongTest() 1758 std::swap(cond, opposite); in GenerateTest() 4500 std::swap(in_reg_hi, in_reg_lo); in HandleLongRotate()
|
D | code_generator_arm_vixl.cc | 1707 std::swap(cond, opposite); in GenerateLongTestConstant() 1789 std::swap(cond, opposite); in GenerateLongTest() 1830 std::swap(left, right); in GenerateLongTest() 1858 std::swap(cond, opposite); in GenerateTest() 4483 std::swap(in_reg_hi, in_reg_lo); in HandleLongRotate()
|
/art/runtime/gc/collector/ |
D | mark_sweep.cc | 1219 std::swap(live_bitmap, mark_bitmap); in SweepArray() 1259 std::swap(large_live_objects, large_mark_objects); in SweepArray()
|