Lines Matching refs:LE
111 support::endian::Writer<support::little> LE(OS); in encodeInstruction() local
116 LE.write<uint8_t>(Value >> 56); in encodeInstruction()
118 LE.write<uint8_t>((Value >> 48) & 0xff); in encodeInstruction()
120 LE.write<uint8_t>(SwapBits((Value >> 48) & 0xff)); in encodeInstruction()
121 LE.write<uint16_t>(0); in encodeInstruction()
123 LE.write<uint32_t>(Value & 0xffffFFFF); in encodeInstruction()
129 LE.write<uint8_t>(0); in encodeInstruction()
130 LE.write<uint8_t>(0); in encodeInstruction()
131 LE.write<uint16_t>(0); in encodeInstruction()
133 LE.write<uint32_t>(Imm >> 32); in encodeInstruction()
139 LE.write<uint8_t>(Value >> 56); in encodeInstruction()
141 LE.write<uint8_t>((Value >> 48) & 0xff); in encodeInstruction()
142 LE.write<uint16_t>((Value >> 32) & 0xffff); in encodeInstruction()
143 LE.write<uint32_t>(Value & 0xffffFFFF); in encodeInstruction()
145 LE.write<uint8_t>(SwapBits((Value >> 48) & 0xff)); in encodeInstruction()