Home
last modified time | relevance | path

Searched refs:Byte3 (Results 1 – 2 of 2) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/orc/
H A Dendianness.h75 uint32_t Byte3 = value & 0xFF000000; in ByteSwap_32()
76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
/src/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dbit.h125 uint32_t Byte3 = UV & 0xFF000000; in byteswap() local
126 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in byteswap()