Home
last modified time | relevance | path

Searched refs:Byte1 (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSwapByteOrder.h51 uint32_t Byte1 = value & 0x0000FF00; in SwapByteOrder_32()
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/llvm/include/llvm/Support/
DSwapByteOrder.h48 uint32_t Byte1 = value & 0x0000FF00; in SwapByteOrder_32()
51 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/llvm-project/llvm/include/llvm/Support/
DSwapByteOrder.h73 uint32_t Byte1 = value & 0x0000FF00; in ByteSwap_32()
76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DSwapByteOrder.h78 uint32_t Byte1 = value & 0x0000FF00; in SwapByteOrder_32()
81 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/pigweed/pw_base64/
Dbase64.cc75 constexpr uint8_t Byte1(uint8_t bits1, uint8_t bits2) { in Byte1() function
129 *binary++ = Byte1(char1, char2); in pw_Base64Decode()