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

/external/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 getSwappedBytes(unsigned int C) { return SwapByteOrder_32(C); }
79 inline signed int getSwappedBytes( signed int C) { return SwapByteOrder_32(C); }
82 inline unsigned long getSwappedBytes(unsigned long C) { return SwapByteOrder_32(C); }
83 inline signed long getSwappedBytes( signed long C) { return SwapByteOrder_32(C); }
H A DMathExtras.h382 return sys::SwapByteOrder_32(Value);

Completed in 1575 milliseconds