Searched defs:RT_BSWAP_U64_C (Results 1 - 1 of 1) sorted by relevance

/vbox/include/iprt/
H A Dcdefs.h1838 # define RT_BSWAP_U64(u64) RT_BSWAP_U64_C(u64)
1841 ? RT_BSWAP_U64_C(u64) : ASMByteSwapU64(u64))
1869 /** @def RT_BSWAP_U64_C
1871 #define RT_BSWAP_U64_C(u64) RT_MAKE_U64(RT_BSWAP_U32_C((u64) >> 32), RT_BSWAP_U32_C((u64) & 0xffffffff)) macro
1893 # define RT_H2LE_U64_C(u64) RT_BSWAP_U64_C(u64)
1942 # define RT_LE2H_U64_C(u64) RT_BSWAP_U64_C(u64)
1993 # define RT_H2BE_U64_C(u64) RT_BSWAP_U64_C(u64)
2041 # define RT_BE2H_U64_C(u64) RT_BSWAP_U64_C(u64)

Completed in 53 milliseconds