OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:bswap64
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
ByteSwap.h
49
ALWAYS_INLINE uint64_t
bswap64
(uint64_t x) { return _byteswap_uint64(x); }
function in namespace:WTF
55
ALWAYS_INLINE uint64_t
bswap64
(uint64_t x) { return __builtin_bswap64(x); }
function in namespace:WTF
68
ALWAYS_INLINE size_t bswapuintptrt(size_t x) { return
bswap64
(x); }
/external/qemu/
bswap.h
62
static inline uint64_t
bswap64
(uint64_t x)
function
81
*s =
bswap64
(*s);
android-trace_common.h
96
#define
bswap64
(x) (((x) << 56) | (((x) & 0xff00) << 40) \
macro
114
#define hostToLE64(x)
bswap64
(x)
117
#define LE64ToHost(x)
bswap64
(x)
120
#define convert64(x) (x =
bswap64
(x))
/frameworks/compile/mclinker/include/mcld/ADT/
SizeTraits.h
120
#ifdef
bswap64
121
#undef
bswap64
macro
142
///
bswap64
- byte swap 64-bit version
144
inline uint64_t
bswap64
(uint64_t pData)
function in namespace:mcld
Completed in 163 milliseconds