Home
last modified time | relevance | path

Searched refs:TOut (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp237 bool emitPartialAddress(MipsTargetStreamer &TOut, SMLoc IDLoc, MCSymbol *Sym);
1875 MipsTargetStreamer &TOut = getTargetStreamer(); in processInstruction() local
2145 TOut.getStreamer().emitRelocDirective( in processInstruction()
2148 TOut.getStreamer().emitLabel(TmpLabel); in processInstruction()
2190 TOut.emitRRI(Mips::LWGP_MM, DstReg.getReg(), Mips::GP, MemOffset, in processInstruction()
2324 TOut.emitDirectiveSetNoReorder(); in processInstruction()
2341 TOut.setUsesMicroMips(); in processInstruction()
2342 TOut.updateABIInfo(*this); in processInstruction()
2348 TOut.emitEmptyDelaySlot(hasShortDelaySlot(Inst), IDLoc, STI); in processInstruction()
2349 TOut.emitDirectiveSetReorder(); in processInstruction()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp765 auto &TOut = in ParseDirective() local
803 TOut.emitGlobalType(WasmSym); in ParseDirective()
833 TOut.emitTableType(WasmSym); in ParseDirective()
861 TOut.emitFunctionType(WasmSym); in ParseDirective()
875 TOut.emitExportName(WasmSym, ExportName); in ParseDirective()
887 TOut.emitImportModule(WasmSym, ImportModule); in ParseDirective()
899 TOut.emitImportName(WasmSym, ImportName); in ParseDirective()
913 TOut.emitEventType(WasmSym); in ParseDirective()
925 TOut.emitLocal(Locals); in ParseDirective()
963 auto &TOut = reinterpret_cast<WebAssemblyTargetStreamer &>( in ensureLocals() local
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DExpr.cpp698 llvm::raw_string_ostream TOut(TemplateParams); in ComputeName() local
708 TOut << Param << " = "; in ComputeName()
710 Policy, TOut, in ComputeName()
712 TOut << ", "; in ComputeName()
726 TOut << Param << " = "; in ComputeName()
727 Args->get(i).print(Policy, TOut, /*IncludeType*/ true); in ComputeName()
728 TOut << ", "; in ComputeName()
732 TOut.flush(); in ComputeName()
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/Interp/
H A DInterp.h800 template <PrimType TIn, PrimType TOut> bool Cast(InterpState &S, CodePtr OpPC) { in Cast()
802 using U = typename PrimConv<TOut>::T; in Cast()