Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DSwapByteOrder.h50 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
54 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/llvm/include/llvm/Support/
DSwapByteOrder.h47 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
51 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/llvm-project/llvm/include/llvm/Support/
DSwapByteOrder.h72 uint32_t Byte0 = value & 0x000000FF; 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.h77 uint32_t Byte0 = value & 0x000000FF; in SwapByteOrder_32()
81 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in SwapByteOrder_32()
/external/pigweed/pw_base64/
Dbase64.cc72 constexpr uint8_t Byte0(uint8_t bits0, uint8_t bits1) { in Byte0() function
128 *binary++ = Byte0(char0, char1); in pw_Base64Decode()