Home | History | Annotate | Download | only in MCTargetDesc

Lines Matching defs:OS

61     Triple::OSType OS = TT.getOS();
62 return OS == Triple::Darwin || OS == Triple::MacOSX || OS == Triple::IOS;
322 void EmitByte(unsigned char C, raw_ostream &OS) const {
323 OS << (char)C;
326 void EmitConstant(uint64_t Val, unsigned Size, raw_ostream &OS) const {
329 EmitByte(Val & 255, OS);
334 void EncodeInstruction(const MCInst &MI, raw_ostream &OS,
1506 EncodeInstruction(const MCInst &MI, raw_ostream &OS,
1524 EmitConstant(Binary >> 16, 2, OS);
1525 EmitConstant(Binary & 0xffff, 2, OS);
1527 EmitConstant(Binary, Size, OS);