Searched refs:Byte2 (Results 1 – 3 of 3) sorted by relevance
74 uint32_t Byte2 = value & 0x00FF0000; in ByteSwap_32()76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
88 uint32_t Byte2 = UV & 0x00FF0000; in byteswap() local90 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in byteswap()
386 #define Byte2(i) BitfR(i,16,8,_b168) macro