Searched refs:Swap (Results 1 - 25 of 32) sorted by relevance

12

/freebsd-13-stable/stand/i386/btx/lib/
H A Dbtxv86.S60 # Swap V86 and user registers.
62 __v86_swap: xchgl %ebp,0x4(%esp,1) # Swap pointer, EBP
63 xchgl %eax,V86_EAX(%ebp) # Swap EAX
64 xchgl %ecx,V86_ECX(%ebp) # Swap ECX
65 xchgl %edx,V86_EDX(%ebp) # Swap EDX
66 xchgl %ebx,V86_EBX(%ebp) # Swap EBX
70 xchgl %eax,V86_EFL(%ebp) # Swap
74 xchgl %eax,V86_EBP(%ebp) # Swap
77 xchgl %esi,V86_ESI(%ebp) # Swap ESI
78 xchgl %edi,V86_EDI(%ebp) # Swap ED
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DLexicallyOrderedRecursiveASTVisitor.h117 bool Swap; local
124 Swap = true;
129 Swap = Children.size() != 2;
132 Swap = CE->isInfixBinaryOp();
135 if (Swap && Children.size() > 1)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DGsymReader.cpp80 Swap.reset(new SwappedData);
89 if (Swap) {
92 Swap->Hdr = ExpectedHdr.get();
95 Hdr = &Swap->Hdr;
104 if (!Swap) {
142 Swap->AddrOffsets.resize(Hdr->NumAddresses * Hdr->AddrOffSize);
145 if (!Data.getU8(&Offset, Swap->AddrOffsets.data(), Hdr->NumAddresses))
151 reinterpret_cast<uint16_t *>(Swap->AddrOffsets.data()),
158 reinterpret_cast<uint32_t *>(Swap->AddrOffsets.data()),
165 reinterpret_cast<uint64_t *>(Swap
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectList.h47 void Swap(ValueObjectList &value_object_list);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.h66 Swap(a[i], a[RandN(&state, i + 1)]);
H A Dsanitizer_common.h422 template<class T> void Swap(T& a, T& b) { function in namespace:__sanitizer
517 Swap(data_, other.data_);
518 Swap(capacity_bytes_, other.capacity_bytes_);
519 Swap(size_, other.size_);
602 Swap(v[j], v[p]);
610 Swap(v[0], v[i]);
621 Swap(v[j], v[max_ind]);
H A Dsanitizer_deadlock_detector.h80 Swap(recursive_locks[i], recursive_locks[n_recursive_locks]);
90 Swap(all_locks_with_contexts_[i],
161 Swap(edges_[i], edges_[n_edges_ - 1]);
H A Dsanitizer_common_interceptors.inc2334 Swap(pglob->gl_closedir, glob_copy.gl_closedir);
2335 Swap(pglob->gl_readdir, glob_copy.gl_readdir);
2336 Swap(pglob->gl_opendir, glob_copy.gl_opendir);
2337 Swap(pglob->gl_lstat, glob_copy.gl_lstat);
2338 Swap(pglob->gl_stat, glob_copy.gl_stat);
2343 Swap(pglob->gl_closedir, glob_copy.gl_closedir);
2344 Swap(pglob->gl_readdir, glob_copy.gl_readdir);
2345 Swap(pglob->gl_opendir, glob_copy.gl_opendir);
2346 Swap(pglob->gl_lstat, glob_copy.gl_lstat);
2347 Swap(pglo
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_stack_trace.cpp47 Swap(trace_buffer[i], trace_buffer[size - 1 - i]);
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dcommon.h45 template <class T> void Swap(T &A, T &B) { function in namespace:scudo
97 Swap(A[I], A[getRandomModN(&State, I + 1)]);
/freebsd-13-stable/contrib/llvm-project/lldb/source/Core/
H A DValueObjectList.cpp107 void ValueObjectList::Swap(ValueObjectList &value_object_list) { function in class:ValueObjectList
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc60 // Swap a and b if necessary so that a has the larger absolute value.
/freebsd-13-stable/contrib/dialog/samples/install/
H A Dsetup.c29 /* max number of possible Linux/Swap/MsDos partitions */
72 Swap enumerator in enum:partition_type
141 partitions[num_partition].type = Swap;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
H A DGsymReader.h69 std::unique_ptr<SwappedData> Swap; member in class:llvm::gsym::GsymReader
/freebsd-13-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc410 * Swap byte order from \c Endianness order to host byte order.
414 * Swap byte order from host byte order to \c Endianness order.
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_win.cpp86 Swap(ExceptionFilter, user_seh_handler);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc410 * Swap byte order from \c Endianness order to host byte order.
414 * Swap byte order from host byte order to \c Endianness order.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp3941 bool HasVSX, bool &Swap, bool &Negate) {
3942 Swap = false;
3948 case ISD::SETLE: CC = ISD::SETGE; Swap = true; break;
3949 case ISD::SETLT: CC = ISD::SETGT; Swap = true; break;
3950 case ISD::SETOLE: CC = ISD::SETOGE; Swap = true; break;
3951 case ISD::SETOLT: CC = ISD::SETOGT; Swap = true; break;
3952 case ISD::SETUGE: CC = ISD::SETULE; Swap = true; break;
3953 case ISD::SETUGT: CC = ISD::SETULT; Swap = true; break;
3994 case ISD::SETGE: CC = ISD::SETLE; Swap = true; break;
3995 case ISD::SETLT: CC = ISD::SETGT; Swap
3940 getVCmpInst(MVT VecVT, ISD::CondCode CC, bool HasVSX, bool &Swap, bool &Negate) argument
4149 bool Swap, Negate; local
5201 bool Swap; local
[all...]
H A DPPCISelLowering.h575 bool &Swap, bool IsLE);
596 bool &Swap, bool IsLE);
616 unsigned &InsertAtByte, bool &Swap, bool IsLE);
H A DPPCISelLowering.cpp2020 unsigned &InsertAtByte, bool &Swap, bool IsLE) {
2039 Swap = M0 < 4;
2047 Swap = M1 < 4;
2055 Swap = M2 < 4;
2063 Swap = M3 < 4;
2071 Swap = true;
2095 bool &Swap, bool IsLE) {
2115 Swap = false;
2128 Swap = false;
2134 Swap
2019 isXXINSERTWMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, unsigned &InsertAtByte, bool &Swap, bool IsLE) argument
2094 isXXSLDWIShuffleMask(ShuffleVectorSDNode *N, unsigned &ShiftElts, bool &Swap, bool IsLE) argument
2193 isXXPERMDIShuffleMask(ShuffleVectorSDNode *N, unsigned &DM, bool &Swap, bool IsLE) argument
2779 bool Swap = false; local
9584 bool Swap = false; local
9690 bool Swap = false; local
9913 bool Swap = false; local
10058 SDValue Swap = DAG.getNode(PPCISD::SWAP_NO_CHAIN, dl, MVT::v2f64, Conv); local
13166 generateEquivalentSub(SDNode *N, int Size, bool Complement, bool Swap, SDLoc &DL, SelectionDAG &DAG) argument
14401 SDValue Swap = DAG.getNode( local
14471 SDValue Swap = DAG.getNode(PPCISD::XXSWAPD, dl, local
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
H A Ddfsan.cpp175 Swap(l1, l2);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeIntegerTypes.cpp2924 SDValue Swap = DAG.getAtomicCmpSwap( local
2928 ReplaceValueWith(SDValue(N, 0), Swap.getValue(0));
2929 ReplaceValueWith(SDValue(N, 1), Swap.getValue(2));
3860 SDValue Swap = DAG.getAtomicCmpSwap( local
3865 ReplaceValueWith(SDValue(N, 0), Swap.getValue(0));
3866 ReplaceValueWith(SDValue(N, 1), Swap.getValue(2));
4205 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl, local
4210 return Swap.getValue(1);
4323 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl, local
4328 return Swap
[all...]
/freebsd-13-stable/stand/lua/
H A Dmenu.lua222 -- Swap the first two menu items on single user boot.
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstPropagation.cpp3014 bool Swap = false; local
3018 Swap = true;
3020 const LatticeCell &LI = Swap ? LS2 : LS3;
3021 const MachineOperand &OpR2 = Swap ? MI.getOperand(3)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp3814 bool Swap = false; local
3820 Swap = true;
3825 Swap = true;
3830 Swap = true;
3833 if (Swap) {

Completed in 438 milliseconds

12