Searched refs:SwapByteOrder_32 (Results 1 - 2 of 2) sorted by relevance

/freebsd-10.1-release/contrib/llvm/include/llvm/Support/
H A DSwapByteOrder.h39 /// SwapByteOrder_32 - This function returns a byte-swapped representation of
41 inline uint32_t SwapByteOrder_32(uint32_t value) { function in namespace:llvm::sys
65 uint64_t Hi = SwapByteOrder_32(uint32_t(value));
66 uint32_t Lo = SwapByteOrder_32(uint32_t(value >> 32));
78 inline unsigned int SwapByteOrder(unsigned int C) { return SwapByteOrder_32(C); }
79 inline signed int SwapByteOrder( signed int C) { return SwapByteOrder_32(C); }
82 inline unsigned long SwapByteOrder(unsigned long C) { return SwapByteOrder_32(C); }
83 inline signed long SwapByteOrder( signed long C) { return SwapByteOrder_32(C); }
H A DMathExtras.h373 return sys::SwapByteOrder_32(Value);

Completed in 50 milliseconds