Home
last modified time | relevance | path

Searched refs:SwapByteOrder_16 (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DSwapByteOrder.h30 inline uint16_t SwapByteOrder_16(uint16_t value) { in SwapByteOrder_16() function
76 inline unsigned short getSwappedBytes(unsigned short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
77 inline signed short getSwappedBytes( signed short C) { return SwapByteOrder_16(C); } in getSwappedBytes()
H A DMathExtras.h440 return sys::SwapByteOrder_16(Value);
/freebsd-12.1/contrib/llvm/lib/Support/
H A DConvertUTFWrapper.cpp106 ByteSwapped[I] = llvm::sys::SwapByteOrder_16(ByteSwapped[I]); in convertUTF16ToUTF8String()