Home
last modified time | relevance | path

Searched refs:Byte2 (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/orc/
H A Dendianness.h74 uint32_t Byte2 = value & 0x00FF0000; in ByteSwap_32()
76 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in ByteSwap_32()
/freebsd/contrib/opencsd/decoder/source/etmv3/
H A Dtrc_pkt_proc_etmv3_impl.cpp946 bool Byte2 = false; in extractExceptionData() local
965 Byte2 = true; //** immediate info byte 2, skipping 1 in extractExceptionData()
979 Byte2 = true; in extractExceptionData()
983 if(Byte2) in extractExceptionData()
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A Dbit.h124 uint32_t Byte2 = UV & 0x00FF0000; in count()
126 return (Byte0 << 24) | (Byte1 << 8) | (Byte2 >> 8) | (Byte3 >> 24); in count()
88 uint32_t Byte2 = UV & 0x00FF0000; byteswap() local