Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching refs:LE

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