Home
last modified time | relevance | path

Searched refs:OSE (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCCodeEmitter.cpp119 support::endian::Writer OSE(OS, IsLittleEndian ? llvm::endianness::little in encodeInstruction() local
129 OSE.write<uint16_t>(0); in encodeInstruction()
130 OSE.write<uint32_t>(Value & 0xffffFFFF); in encodeInstruction()
134 OSE.write<uint8_t>(0); in encodeInstruction()
135 OSE.write<uint8_t>(0); in encodeInstruction()
136 OSE.write<uint16_t>(0); in encodeInstruction()
137 OSE.write<uint32_t>(Imm >> 32); in encodeInstruction()
146 OSE.write<uint16_t>((Value >> 32) & 0xffff); in encodeInstruction()
147 OSE.write<uint32_t>(Value & 0xffffFFFF); in encodeInstruction()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DByteStreamer.h111 raw_svector_ostream OSE(Buffer); in emitSLEB128()
112 unsigned Length = encodeSLEB128(DWord, OSE); in emitSLEB128()
124 raw_svector_ostream OSE(Buffer); in emitULEB128()
125 unsigned Length = encodeULEB128(DWord, OSE, PadTo); in emitULEB128()
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCAssembler.cpp1137 raw_svector_ostream OSE(Data); in relaxLEB() local
1143 encodeSLEB128(Value, OSE, PadTo); in relaxLEB()
1145 encodeULEB128(Value, OSE, PadTo); in relaxLEB()
1276 raw_svector_ostream OSE(Data); in relaxPseudoProbeAddr() local
1280 encodeSLEB128(AddrDelta, OSE, OldSize); in relaxPseudoProbeAddr()
H A DMCStreamer.cpp163 raw_svector_ostream OSE(Tmp); in emitULEB128IntValue() local
164 encodeULEB128(Value, OSE, PadTo); in emitULEB128IntValue()
165 emitBytes(OSE.str()); in emitULEB128IntValue()
173 raw_svector_ostream OSE(Tmp); in emitSLEB128IntValue() local
174 encodeSLEB128(Value, OSE); in emitSLEB128IntValue()
175 emitBytes(OSE.str()); in emitSLEB128IntValue()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h319 void VisitObjCSelectorExpr(const ObjCSelectorExpr *OSE);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1283 void JSONNodeDumper::VisitObjCSelectorExpr(const ObjCSelectorExpr *OSE) { in VisitObjCSelectorExpr() argument
1287 OSE->getSelector().print(OS); in VisitObjCSelectorExpr()
/freebsd/contrib/byacc/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/ncurses/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/libpcap/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/tcpdump/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/unbound/
H A Dconfig.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp3410 if (ObjCSelectorExpr *OSE = in RemoveSelectorFromWarningCache() local
3412 Selector Sel = OSE->getSelector(); in RemoveSelectorFromWarningCache()
3413 SourceLocation Loc = OSE->getAtLoc(); in RemoveSelectorFromWarningCache()