Searched refs:swap (Results 101 - 125 of 553) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeTypesGeneric.cpp67 std::swap(Lo, Hi);
75 std::swap(Lo, Hi);
92 std::swap(Lo, Hi);
135 std::swap(LHS, RHS);
146 std::swap(Lo, Hi);
181 std::swap(Lo, Hi);
240 std::swap(Lo, Hi);
277 std::swap(Lo, Hi);
298 std::swap(Lo, Hi);
321 std::swap(Part
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/binary_heap_/
H A Derase_fn_imps.hpp175 std::swap(*it.m_p_e, m_a_entries[m_size - 1]);
243 std::swap(m_a_entries[left], m_a_entries[right]);
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/trie_policy/
H A Dtrie_policy_base.hpp174 std::swap(b_l, b_r);
176 std::swap(e_l, e_r);
/freebsd-11-stable/contrib/netbsd-tests/sbin/resize_ffs/
H A Dcommon.sh117 local swap=$7
128 if [ x$swap != x ]; then
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DLatencyPriorityQueue.cpp129 std::swap(*Best, Queue.back());
139 std::swap(*I, Queue.back());
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DSymbolStringPool.h72 std::swap(S, Other.S);
79 std::swap(S, Other.S);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DTypeList.cpp119 // new list and add all of the matching types to it, and then swap it into
184 m_types.swap(matching_types);
193 // new list and add all of the matching types to it, and then swap it into
206 m_types.swap(matching_types);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp123 std::swap(OldCollectStats, S.CollectStats);
180 std::swap(OldCollectStats, S.CollectStats);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DStringTableBuilder.cpp103 std::swap(Vec[I++], Vec[K++]);
105 std::swap(Vec[--J], Vec[K]);
/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/GlobalISel/
H A DGIMatchDag.cpp63 std::swap(FromFmt, ToFmt);
67 std::swap(From, To);
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dallocator.h157 swap(__one, __two);
H A Dstl_multimap.h431 * Note that the global std::swap() function is specialized such that
432 * std::swap(m1,m2) will feed to this function.
435 swap(multimap& __x) function in class:multimap
436 { _M_t.swap(__x._M_t); }
661 /// See std::multimap::swap().
664 swap(multimap<_Key, _Tp, _Compare, _Alloc>& __x, function
666 { __x.swap(__y); }
H A Dstl_multiset.h274 * Note that the global std::swap() function is specialized such that
275 * std::swap(s1,s2) will feed to this function.
278 swap(multiset& __x) function in class:multiset
279 { _M_t.swap(__x._M_t); }
556 /// See std::multiset::swap().
559 swap(multiset<_Key, _Compare, _Alloc>& __x, function
561 { __x.swap(__y); }
H A Dstl_set.h282 * Note that the global std::swap() function is specialized such that
283 * std::swap(s1,s2) will feed to this function.
286 swap(set& __x) function in class:set
287 { _M_t.swap(__x._M_t); }
570 /// See std::set::swap().
573 swap(set<_Key, _Compare, _Alloc>& __x, set<_Key, _Compare, _Alloc>& __y) function
574 { __x.swap(__y); }
/freebsd-11-stable/contrib/libstdc++/include/debug/
H A Dhash_map.h121 swap(hash_map& __x) function in class:__gnu_cxx::__debug::hash_map
123 _Base::swap(__x);
278 swap(hash_map<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __x, function in namespace:__gnu_cxx::__debug
280 { __x.swap(__y); }
H A Dhash_multimap.h118 swap(hash_multimap& __x) function in class:__gnu_cxx::__debug::hash_multimap
120 _Base::swap(__x);
262 swap(hash_multimap<_Value, _Tp, _HashFcn, _EqualKey, _Alloc>& __x, function in namespace:__gnu_cxx::__debug
264 { __x.swap(__y); }
H A Dhash_multiset.h123 swap(hash_multiset& __x) function in class:__gnu_cxx::__debug::hash_multiset
125 _Base::swap(__x);
237 swap(hash_multiset<_Value, _HashFcn, _EqualKey, _Alloc>& __x, function in namespace:__gnu_cxx::__debug
239 { __x.swap(__y); }
H A Dhash_set.h118 swap(hash_set& __x) function in class:__gnu_cxx::__debug::hash_set
120 _Base::swap(__x);
253 swap(hash_set<_Value, _HashFcn, _EqualKey, _Alloc>& __x, function in namespace:__gnu_cxx::__debug
255 { __x.swap(__y); }
H A Dmultiset.h198 swap(multiset<_Key,_Compare,_Allocator>& __x) function in class:std::__debug::multiset
200 _Base::swap(__x);
321 swap(multiset<_Key,_Compare,_Allocator>& __x, function in namespace:std::__debug
323 { return __x.swap(__y); }
H A Dset.h203 swap(set<_Key,_Compare,_Allocator>& __x) function in class:std::__debug::set
205 _Base::swap(__x);
326 swap(set<_Key,_Compare,_Allocator>& __x, function in namespace:std::__debug
328 { return __x.swap(__y); }
/freebsd-11-stable/lib/libc/stdlib/
H A Dmerge.c237 tp2 = list1; /* swap list1, list2 */
250 #define swap(a, b) { \ macro
312 swap (f1, f1 + size);
337 swap(f1, f1 + size);
357 swap(u, t);
/freebsd-11-stable/sys/cam/
H A Dcam_queue.c50 swap(cam_pinfo **queue_array, int i, int j);
344 * swap: Given an array of cam_pinfo* elements and indexes i and j,
348 swap(cam_pinfo **queue_array, int i, int j) function
377 swap(queue_array, parent, child);
405 swap(queue_array, child, parent);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DUse.cpp16 void Use::swap(Use &RHS) { function in class:llvm::Use
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLexicallyOrderedRecursiveASTVisitor.h136 std::swap(Children[0], Children[1]);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DKnownBits.cpp63 std::swap(RHS.Zero, RHS.One);

Completed in 336 milliseconds

1234567891011>>