Searched refs:Byte3 (Results 1 – 3 of 3) sorted by relevance
75 uint32_t Byte3 = value & 0xFF000000; in ByteSwap_32()76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
89 uint32_t Byte3 = UV & 0xFF000000; in byteswap() local90 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in byteswap()
388 #define Byte3(i) BitfR(i,24,8,_b248) macro