Lines Matching refs:RT_BSWAP_U32_C
1849 # define RT_BSWAP_U32(u32) RT_BSWAP_U32_C(u32)
1852 ? RT_BSWAP_U32_C(u32) : ASMByteSwapU32(u32))
1871 #define RT_BSWAP_U64_C(u64) RT_MAKE_U64(RT_BSWAP_U32_C((u64) >> 32), RT_BSWAP_U32_C((u64) & 0xffffffff))
1873 /** @def RT_BSWAP_U32_C
1875 #define RT_BSWAP_U32_C(u32) RT_MAKE_U32_FROM_U8(RT_BYTE4(u32), RT_BYTE3(u32), RT_BYTE2(u32), RT_BYTE1(u32))
1909 # define RT_H2LE_U32_C(u32) RT_BSWAP_U32_C(u32)
1958 # define RT_LE2H_U32_C(u32) RT_BSWAP_U32_C(u32)
2009 # define RT_H2BE_U32_C(u32) RT_BSWAP_U32_C(u32)
2057 # define RT_BE2H_U32_C(u32) RT_BSWAP_U32_C(u32)