Home
last modified time | relevance | path

Searched refs:ByteSwap_32 (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/
H A DSwapByteOrder.h66 inline uint32_t ByteSwap_32(uint32_t value) { in ByteSwap_32() function
87 uint64_t Hi = ByteSwap_32(uint32_t(value)); in ByteSwap_64()
88 uint32_t Lo = ByteSwap_32(uint32_t(value >> 32)); in ByteSwap_64()
110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes()
111 inline signed int getSwappedBytes( signed int C) { return ByteSwap_32(C); } in getSwappedBytes()
115 return sizeof(long) == sizeof(int) ? ByteSwap_32((uint32_t)C) in getSwappedBytes()
120 return sizeof(long) == sizeof(int) ? ByteSwap_32((uint32_t)C) in getSwappedBytes()
137 out.i = ByteSwap_32(in.i); in getSwappedBytes()
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/orc/
H A Dendianness.h66 inline uint32_t ByteSwap_32(uint32_t value) { in ByteSwap_32() function
87 uint64_t Hi = ByteSwap_32(uint32_t(value)); in ByteSwap_64()
88 uint32_t Lo = ByteSwap_32(uint32_t(value >> 32)); in ByteSwap_64()
110 inline unsigned int getSwappedBytes(unsigned int C) { return ByteSwap_32(C); } in getSwappedBytes()
111 inline signed int getSwappedBytes(signed int C) { return ByteSwap_32(C); } in getSwappedBytes()
115 return sizeof(long) == sizeof(int) ? ByteSwap_32((uint32_t)C) in getSwappedBytes()
120 return sizeof(long) == sizeof(int) ? ByteSwap_32((uint32_t)C) in getSwappedBytes()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp158 value = llvm::ByteSwap_32(value); in ReadPseudoMemory()
170 value1 = llvm::ByteSwap_32(value1); in ReadPseudoMemory()
171 value2 = llvm::ByteSwap_32(value2); in ReadPseudoMemory()
197 value = llvm::ByteSwap_32(value); in WritePseudoMemory()
208 value1 = llvm::ByteSwap_32(value1); in WritePseudoMemory()
209 value2 = llvm::ByteSwap_32(value2); in WritePseudoMemory()
/freebsd-13.1/contrib/llvm-project/clang/lib/Lex/
H A DHeaderMap.cpp79 else if (Header->Magic == llvm::ByteSwap_32(HMAP_HeaderMagicNumber) && in checkHeader()
115 return llvm::ByteSwap_32(X); in getEndianAdjustedWord()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DOpcode.h125 return GetEndianSwap() ? llvm::ByteSwap_32(m_data.inst32) : m_data.inst32;
144 return GetEndianSwap() ? llvm::ByteSwap_32(m_data.inst32) : m_data.inst32;
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DMachO.cpp58 CPUType = ByteSwap_32(CPUType); in createLinkGraphFromMachOObject()
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DOpcode.cpp117 *(uint32_t *)swap_buf = llvm::ByteSwap_32(m_data.inst32); in GetData()
/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DArmUnwindInfo.cpp81 value = llvm::ByteSwap_32(value); in GetByteAtOffset()
/freebsd-13.1/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp80 return llvm::ByteSwap_32(value); in ReadSwapInt32()
99 return llvm::ByteSwap_32(value); in ReadSwapInt32()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp678 return APInt(BitWidth, ByteSwap_32(unsigned(U.VAL))); in byteSwap()