Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFMCCodeEmitter.cpp133 support::endian::Writer OSE(OS, IsLittleEndian ? llvm::endianness::little in encodeInstruction() local
143 OSE.write<uint16_t>(0); in encodeInstruction()
144 OSE.write<uint32_t>(Value & 0xffffFFFF); in encodeInstruction()
148 OSE.write<uint8_t>(0); in encodeInstruction()
149 OSE.write<uint8_t>(0); in encodeInstruction()
150 OSE.write<uint16_t>(0); in encodeInstruction()
151 OSE.write<uint32_t>(Imm >> 32); in encodeInstruction()
160 OSE.write<uint16_t>((Value >> 32) & 0xffff); in encodeInstruction()
161 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 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()
H A DMCAssembler.cpp1067 raw_svector_ostream OSE(Data); in relaxPseudoProbeAddr() local
1070 encodeSLEB128(AddrDelta, OSE, OldSize); in relaxPseudoProbeAddr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h323 void VisitObjCSelectorExpr(const ObjCSelectorExpr *OSE);
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp1291 void JSONNodeDumper::VisitObjCSelectorExpr(const ObjCSelectorExpr *OSE) { in VisitObjCSelectorExpr() argument
1295 OSE->getSelector().print(OS); in VisitObjCSelectorExpr()
/freebsd/contrib/libpcap/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/byacc/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/tcpdump/
H A Dconfig.sub327 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/sqlite3/autosetup/
H A Dautosetup-config.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/unbound/
H A Dconfig.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/ncurses/
H A Dconfig.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/crypto/krb5/src/config/
H A Dconfig.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/ldns/
H A Dconfig.sub380 es1800 | OSE68k | ose68k | ose | OSE)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprObjC.cpp3400 if (ObjCSelectorExpr *OSE = in RemoveSelectorFromWarningCache() local
3402 Selector Sel = OSE->getSelector(); in RemoveSelectorFromWarningCache()
3403 SourceLocation Loc = OSE->getAtLoc(); in RemoveSelectorFromWarningCache()