OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SwapByteOrder_32
(Results
1 - 2
of
2
) sorted by null
/external/llvm/include/llvm/Support/
SwapByteOrder.h
39
///
SwapByteOrder_32
- This function returns a byte-swapped representation of
41
inline uint32_t
SwapByteOrder_32
(uint32_t value) {
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); }
MathExtras.h
372
return sys::
SwapByteOrder_32
(Value);
Completed in 29 milliseconds