Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp236 bool emitPartialAddress(MipsTargetStreamer &TOut, SMLoc IDLoc, MCSymbol *Sym);
1829 MipsTargetStreamer &TOut = getTargetStreamer(); in processInstruction() local
2102 TOut.getStreamer().emitRelocDirective( in processInstruction()
2105 TOut.getStreamer().emitLabel(TmpLabel); in processInstruction()
2146 TOut.emitRRI(Mips::LWGP_MM, DstReg.getReg(), Mips::GP, MemOffset, in processInstruction()
2291 TOut.emitEmptyDelaySlot(false, IDLoc, STI); in processInstruction()
2302 TOut.emitDirectiveSetReorder(); in processInstruction()
2314 TOut.emitDirectiveSetNoReorder(); in processInstruction()
2336 TOut.emitDirectiveSetReorder(); in processInstruction()
2342 TOut.setUsesMicroMips(); in processInstruction()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
H A DWebAssemblyAsmParser.cpp918 auto &TOut = in parseDirective() local
955 TOut.emitGlobalType(WasmSym); in parseDirective()
989 TOut.emitTableType(WasmSym); in parseDirective()
1030 TOut.emitFunctionType(WasmSym); in parseDirective()
1046 TOut.emitExportName(WasmSym, ExportName); in parseDirective()
1061 TOut.emitImportModule(WasmSym, ImportModule); in parseDirective()
1076 TOut.emitImportName(WasmSym, ImportName); in parseDirective()
1090 TOut.emitTagType(WasmSym); in parseDirective()
1103 TOut.emitLocal(Locals); in parseDirective()
1143 auto &TOut = reinterpret_cast<WebAssemblyTargetStreamer &>( in ensureLocals() local
[all …]
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp850 llvm::raw_string_ostream TOut(TemplateParams); in ComputeName() local
859 TOut << Param << " = "; in ComputeName()
860 Args.get(i).print(Policy, TOut, in ComputeName()
863 TOut << ", "; in ComputeName()
877 TOut << Param << " = "; in ComputeName()
878 Args->get(i).print(Policy, TOut, /*IncludeType*/ true); in ComputeName()
879 TOut << ", "; in ComputeName()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterp.h2339 template <PrimType TIn, PrimType TOut> bool Cast(InterpState &S, CodePtr OpPC) { in Cast()
2341 using U = typename PrimConv<TOut>::T; in Cast()
3254 template <PrimType TIn, PrimType TOut>
3256 static_assert(isPtrType(TIn) && isPtrType(TOut)); in DecayPtr()
3258 using ToT = typename PrimConv<TOut>::T; in DecayPtr()