Home
last modified time | relevance | path

Searched refs:Swap (Results 1 – 25 of 96) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
HDGsymReader.cpp80 Swap.reset(new SwappedData); in parse()
89 if (Swap) { in parse()
92 Swap->Hdr = ExpectedHdr.get(); in parse()
95 Hdr = &Swap->Hdr; in parse()
104 if (!Swap) { in parse()
142 Swap->AddrOffsets.resize(Hdr->NumAddresses * Hdr->AddrOffSize); in parse()
145 if (!Data.getU8(&Offset, Swap->AddrOffsets.data(), Hdr->NumAddresses)) in parse()
151 reinterpret_cast<uint16_t *>(Swap->AddrOffsets.data()), in parse()
158 reinterpret_cast<uint32_t *>(Swap->AddrOffsets.data()), in parse()
165 reinterpret_cast<uint64_t *>(Swap->AddrOffsets.data()), in parse()
[all …]
/freebsd-11-stable/stand/i386/btx/lib/
HDbtxv86.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 EDI
[all …]
/freebsd-11-stable/stand/pc98/btx/lib/
HDbtxv86.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 EDI
[all …]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
HDLexicallyOrderedRecursiveASTVisitor.h117 bool Swap; in getStmtChildren() local
124 Swap = true; in getStmtChildren()
129 Swap = Children.size() != 2; in getStmtChildren()
132 Swap = CE->isInfixBinaryOp(); in getStmtChildren()
135 if (Swap && Children.size() > 1) in getStmtChildren()
/freebsd-11-stable/contrib/file/magic/Magdir/
HDeditors26 # Vi IMproved Swap file
39 0 string \x00\x00\x00\x12Kate\ Swap\ File\ 2.0\x00 Kate swap file
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
HDsanitizer_common.h421 template<class T> void Swap(T& a, T& b) { in Swap() function
516 Swap(data_, other.data_); in swap()
517 Swap(capacity_bytes_, other.capacity_bytes_); in swap()
518 Swap(size_, other.size_); in swap()
601 Swap(v[j], v[p]);
609 Swap(v[0], v[i]);
620 Swap(v[j], v[max_ind]);
HDsanitizer_deadlock_detector.h80 Swap(recursive_locks[i], recursive_locks[n_recursive_locks]); in removeLock()
90 Swap(all_locks_with_contexts_[i], in removeLock()
161 Swap(edges_[i], edges_[n_edges_ - 1]); in newNode()
HDsanitizer_allocator.h66 Swap(a[i], a[RandN(&state, i + 1)]); in RandomShuffle()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
HDcommon.h45 template <class T> void Swap(T &A, T &B) { in Swap() function
97 Swap(A[I], A[getRandomModN(&State, I + 1)]); in shuffle()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDValueObjectList.h47 void Swap(ValueObjectList &value_object_list);
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
HDtsan_stack_trace.cpp47 Swap(trace_buffer[i], trace_buffer[size - 1 - i]); in ReverseOrder()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDValueObjectList.cpp108 void ValueObjectList::Swap(ValueObjectList &value_object_list) { in Swap() function in ValueObjectList
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/
HDGsymReader.h69 std::unique_ptr<SwappedData> Swap; variable
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCISelDAGToDAG.cpp3926 bool HasVSX, bool &Swap, bool &Negate) { in getVCmpInst() argument
3927 Swap = false; in getVCmpInst()
3933 case ISD::SETLE: CC = ISD::SETGE; Swap = true; break; in getVCmpInst()
3934 case ISD::SETLT: CC = ISD::SETGT; Swap = true; break; in getVCmpInst()
3935 case ISD::SETOLE: CC = ISD::SETOGE; Swap = true; break; in getVCmpInst()
3936 case ISD::SETOLT: CC = ISD::SETOGT; Swap = true; break; in getVCmpInst()
3937 case ISD::SETUGE: CC = ISD::SETULE; Swap = true; break; in getVCmpInst()
3938 case ISD::SETUGT: CC = ISD::SETULT; Swap = true; break; in getVCmpInst()
3979 case ISD::SETGE: CC = ISD::SETLE; Swap = true; break; in getVCmpInst()
3980 case ISD::SETLT: CC = ISD::SETGT; Swap = true; break; in getVCmpInst()
[all …]
HDPPCISelLowering.h553 bool &Swap, bool IsLE);
574 bool &Swap, bool IsLE);
594 unsigned &InsertAtByte, bool &Swap, bool IsLE);
HDPPCISelLowering.cpp1921 unsigned &InsertAtByte, bool &Swap, bool IsLE) { in isXXINSERTWMask() argument
1940 Swap = M0 < 4; in isXXINSERTWMask()
1948 Swap = M1 < 4; in isXXINSERTWMask()
1956 Swap = M2 < 4; in isXXINSERTWMask()
1964 Swap = M3 < 4; in isXXINSERTWMask()
1972 Swap = true; in isXXINSERTWMask()
1996 bool &Swap, bool IsLE) { in isXXSLDWIShuffleMask() argument
2016 Swap = false; in isXXSLDWIShuffleMask()
2029 Swap = false; in isXXSLDWIShuffleMask()
2035 Swap = true; in isXXSLDWIShuffleMask()
[all …]
/freebsd-11-stable/stand/i386/kgzldr/
HDcrt.s63 xchgl %eax,%ecx # Swap char, offset
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64Schedule.td83 def WriteAtomic : SchedWrite; // Atomic memory operations (CAS, Swap, LDOP)
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/asan/
HDasan_win.cpp86 Swap(ExceptionFilter, user_seh_handler); in INTERCEPTOR_WINAPI()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/dfsan/
HDdfsan.cpp175 Swap(l1, l2); in __dfsan_union()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/builtins/
HDfp_add_impl.inc60 // Swap a and b if necessary so that a has the larger absolute value.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
HDLegalizeIntegerTypes.cpp2800 SDValue Swap = DAG.getAtomicCmpSwap( in ExpandIntRes_LOAD() local
2804 ReplaceValueWith(SDValue(N, 0), Swap.getValue(0)); in ExpandIntRes_LOAD()
2805 ReplaceValueWith(SDValue(N, 1), Swap.getValue(2)); in ExpandIntRes_LOAD()
3730 SDValue Swap = DAG.getAtomicCmpSwap( in ExpandIntRes_ATOMIC_LOAD() local
3735 ReplaceValueWith(SDValue(N, 0), Swap.getValue(0)); in ExpandIntRes_ATOMIC_LOAD()
3736 ReplaceValueWith(SDValue(N, 1), Swap.getValue(2)); in ExpandIntRes_ATOMIC_LOAD()
4075 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl, in ExpandIntOp_STORE() local
4080 return Swap.getValue(1); in ExpandIntOp_STORE()
4193 SDValue Swap = DAG.getAtomic(ISD::ATOMIC_SWAP, dl, in ExpandIntOp_ATOMIC_STORE() local
4198 return Swap.getValue(1); in ExpandIntOp_ATOMIC_STORE()
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
HDInstrProfData.inc385 * Swap byte order from \c Endianness order to host byte order.
389 * Swap byte order from host byte order to \c Endianness order.
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
HDInstrProfData.inc385 * Swap byte order from \c Endianness order to host byte order.
389 * Swap byte order from host byte order to \c Endianness order.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
HDHexagonConstPropagation.cpp3003 bool Swap = false; in rewriteHexConstUses() local
3007 Swap = true; in rewriteHexConstUses()
3009 const LatticeCell &LI = Swap ? LS2 : LS3; in rewriteHexConstUses()
3010 const MachineOperand &OpR2 = Swap ? MI.getOperand(3) in rewriteHexConstUses()

1234