Searched refs:swap (Results 126 - 150 of 553) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Basic/
H A DPartialDiagnostic.h262 void swap(PartialDiagnostic &PD) { function in class:clang::PartialDiagnostic
263 std::swap(DiagID, PD.DiagID);
264 std::swap(DiagStorage, PD.DiagStorage);
265 std::swap(Allocator, PD.Allocator);
/freebsd-11-stable/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dmap_debug_base.hpp104 swap(PB_DS_CLASS_C_DEC& other);
248 swap(PB_DS_CLASS_C_DEC& other) function in class:pb_ds::detail::PB_DS_CLASS_C_DEC
251 m_key_set.swap(other.m_key_set);
/freebsd-11-stable/crypto/heimdal/lib/krb5/
H A Dsalt-des.c145 unsigned char swap[] = { 0x0, 0x8, 0x4, 0xc, 0x2, 0xa, 0x6, 0xe, local
155 *--p ^= (swap[tmp & 0xf] << 4) | swap[(tmp & 0xf0) >> 4];
/freebsd-11-stable/contrib/llvm-project/lld/lib/ReaderWriter/MachO/
H A DMachONormalizedFileBinaryUtils.h161 packRelocation(const Relocation &r, bool swap, bool isBigEndian) { argument
182 result.r_word0 = swap ? getSwappedBytes(r0) : r0;
183 result.r_word1 = swap ? getSwappedBytes(r1) : r1;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DIterable.h124 friend void swap(AdaptedConstIterator<C1, E1, A1> &,
147 void swap(AdaptedConstIterator<C, E, A> &lhs, function in namespace:lldb_private
149 std::swap(lhs.m_iter, rhs.m_iter);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DDenseMap.h709 swap(other);
728 void swap(DenseMap& RHS) { function in class:llvm::DenseMap
731 std::swap(Buckets, RHS.Buckets);
732 std::swap(NumEntries, RHS.NumEntries);
733 std::swap(NumTombstones, RHS.NumTombstones);
734 std::swap(NumBuckets, RHS.NumBuckets);
747 swap(other);
888 swap(other);
902 void swap(SmallDenseMap& RHS) { function in class:llvm::SmallDenseMap
906 std::swap(NumTombstone
[all...]
H A DSmallPtrSet.h205 /// swap - Swaps the elements of two sets.
207 void swap(SmallPtrSetImplBase &RHS);
493 /// swap - Swaps the elements of two sets.
494 void swap(SmallPtrSet<PtrType, SmallSize> &RHS) { function in class:llvm::SmallPtrSetIterator
495 SmallPtrSetImplBase::swap(RHS);
503 /// Implement std::swap in terms of SmallPtrSet swap.
505 inline void swap(llvm::SmallPtrSet<T, N> &LHS, llvm::SmallPtrSet<T, N> &RHS) { function in namespace:std
506 LHS.swap(RHS);
H A DStringMap.h113 void swap(StringMapImpl &Other) { function in class:llvm::StringMapImpl
114 std::swap(TheTable, Other.TheTable);
115 std::swap(NumBuckets, Other.NumBuckets);
116 std::swap(NumItems, Other.NumItems);
117 std::swap(NumTombstones, Other.NumTombstones);
306 StringMapImpl::swap(RHS);
307 std::swap(Allocator, RHS.Allocator);
H A DSmallVector.h380 void swap(SmallVectorImpl &RHS);
668 void SmallVectorImpl<T>::swap(SmallVectorImpl<T> &RHS) { function in class:llvm::SmallVectorImpl
673 std::swap(this->BeginX, RHS.BeginX);
674 std::swap(this->Size, RHS.Size);
675 std::swap(this->Capacity, RHS.Capacity);
687 std::swap((*this)[i], RHS[i]);
925 /// Implement std::swap in terms of SmallVector swap.
928 swap(llvm::SmallVectorImpl<T> &LHS, llvm::SmallVectorImpl<T> &RHS) { function in namespace:std
929 LHS.swap(RH
935 swap(llvm::SmallVector<T, N> &LHS, llvm::SmallVector<T, N> &RHS) { function in namespace:std
[all...]
H A DAllocatorList.h161 void swap(AllocatorList &RHS) { function in class:llvm::AllocatorList
162 List.swap(RHS.List);
163 std::swap(getAlloc(), RHS.getAlloc());
H A DMapVector.h93 void swap(MapVector &RHS) { function in class:llvm::MapVector
94 std::swap(Map, RHS.Map);
95 std::swap(Vector, RHS.Vector);
/freebsd-11-stable/contrib/binutils/ld/
H A Dldwrite.c66 endianness are big endian, so we must swap here if the
74 bfd_boolean swap; local
76 swap = FALSE;
82 swap = TRUE;
95 swap = TRUE;
103 if (swap)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetRegisterInfo.cpp300 std::swap(RCA, RCB);
301 std::swap(SubA, SubB);
302 std::swap(BestPreA, BestPreB);
361 std::swap(DefSubReg, SrcSubReg);
362 std::swap(DefRC, SrcRC);
/freebsd-11-stable/contrib/libstdc++/include/tr1/
H A Dhashtable_policy.h740 std::swap(_M_extract, __x._M_extract);
741 std::swap(_M_eq, __x._M_eq);
742 std::swap(_M_ranged_hash, __x._M_ranged_hash);
819 std::swap(_M_extract, __x._M_extract);
820 std::swap(_M_eq, __x._M_eq);
821 std::swap(_M_h1, __x._M_h1);
822 std::swap(_M_h2, __x._M_h2);
886 std::swap(_M_extract, __x._M_extract);
887 std::swap(_M_eq, __x._M_eq);
888 std::swap(_M_h
[all...]
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstl_vector.h738 * Note that the global std::swap() function is specialized such that
739 * std::swap(v1,v2) will feed to this function.
742 swap(vector& __x) function in class:vector
744 std::swap(this->_M_impl._M_start, __x._M_impl._M_start);
745 std::swap(this->_M_impl._M_finish, __x._M_impl._M_finish);
746 std::swap(this->_M_impl._M_end_of_storage,
998 /// See std::vector::swap().
1001 swap(vector<_Tp, _Alloc>& __x, vector<_Tp, _Alloc>& __y) function
1002 { __x.swap(__y); }
H A Dstl_map.h494 * that the global std::swap() function is specialized such
495 * that std::swap(m1,m2) will feed to this function.
498 swap(map& __x) function in class:map
499 { _M_t.swap(__x._M_t); }
731 /// See std::map::swap().
734 swap(map<_Key, _Tp, _Compare, _Alloc>& __x, function
736 { __x.swap(__y); }
/freebsd-11-stable/contrib/top/
H A Dtop.c363 ps.swap = No;
529 ps.swap = 1;
768 /* display swap stats */
769 (*d_swap)(system_info.swap);
1235 ps.swap = !ps.swap;
1237 " %sisplaying per-process swap usage.",
1238 ps.swap ? "D" : "Not d");
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DCGSCCPassManager.h345 friend void swap(ModuleToPostOrderCGSCCPassAdaptor &LHS, function in class:llvm::ModuleToPostOrderCGSCCPassAdaptor
347 std::swap(LHS.Pass, RHS.Pass);
352 swap(*this, RHS);
444 friend void swap(CGSCCToFunctionPassAdaptor &LHS, function in class:llvm::CGSCCToFunctionPassAdaptor
446 std::swap(LHS.Pass, RHS.Pass);
450 swap(*this, RHS);
/freebsd-11-stable/lib/libc/stdlib/
H A Dgetopt_long.c159 char *swap; local
177 swap = nargv[pos];
181 ((char **)nargv)[cstart] = swap;
/freebsd-11-stable/crypto/openssh/openbsd-compat/
H A Dgetopt_long.c143 char *swap; local
161 swap = nargv[pos];
165 ((char **)nargv)[cstart] = swap;
/freebsd-11-stable/contrib/tcpdump/missing/
H A Dgetopt_long.c143 char *swap; local
161 swap = nargv[pos];
165 ((char **)nargv)[cstart] = swap;
/freebsd-11-stable/contrib/file/src/
H A Dgetopt_long.c144 char *swap; local
164 swap = nargv[pos];
166 nargv[cstart] = swap;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Host/common/
H A DGetOptInc.cpp80 char *swap; local
98 swap = nargv[pos];
102 const_cast<char **>(nargv)[cstart] = swap;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DHashTable.h315 // copy with a larger capacity, insert everything into the copy, then swap
324 Buckets.swap(NewMap.Buckets);
325 std::swap(Present, NewMap.Present);
326 std::swap(Deleted, NewMap.Deleted);
/freebsd-11-stable/contrib/libstdc++/include/debug/
H A Dmap.h211 swap(map<_Key,_Tp,_Compare,_Allocator>& __x) function in class:std::__debug::map
213 _Base::swap(__x);
326 swap(map<_Key,_Tp,_Compare,_Allocator>& __lhs, function in namespace:std::__debug
328 { __lhs.swap(__rhs); }

Completed in 418 milliseconds

1234567891011>>