Home
last modified time | relevance | path

Searched full:tsi (Results 1 – 25 of 89) sorted by relevance

1234

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaSYCL.cpp142 TypeSourceInfo *TSI) { in BuildUniqueStableNameExpr() argument
144 RParen, TSI); in BuildUniqueStableNameExpr()
151 TypeSourceInfo *TSI = nullptr; in ActOnUniqueStableNameExpr() local
152 QualType Ty = SemaRef.GetTypeFromParser(ParsedTy, &TSI); in ActOnUniqueStableNameExpr()
156 if (!TSI) in ActOnUniqueStableNameExpr()
157 TSI = getASTContext().getTrivialTypeSourceInfo(Ty, LParen); in ActOnUniqueStableNameExpr()
159 return BuildUniqueStableNameExpr(OpLoc, LParen, RParen, TSI); in ActOnUniqueStableNameExpr()
H A DSemaTemplateDeductionGuide.cpp83 TypeSourceInfo *transform(TypeSourceInfo *TSI) { return TransformType(TSI); } in transform() argument
170 TypeSourceInfo *TSI = InnerTLB.getTypeSourceInfo(Context, Transformed); in TransformTypedefType() local
174 OrigDecl->getLocation(), OrigDecl->getIdentifier(), TSI); in TransformTypedefType()
179 OrigDecl->getLocation(), OrigDecl->getIdentifier(), TSI); in TransformTypedefType()
447 TypeSourceInfo *TSI = SemaRef.Context.getTrivialTypeSourceInfo(Result, Loc); in buildSimpleDeductionGuide() local
449 TSI = SemaRef.SubstType(TSI, OuterInstantiationArgs, Loc, in buildSimpleDeductionGuide()
452 if (!TSI) in buildSimpleDeductionGuide()
456 TSI->getTypeLoc().castAs<FunctionProtoTypeLoc>(); in buildSimpleDeductionGuide()
461 auto *TSI = SemaRef.Context.getTrivialTypeSourceInfo(T, Loc); in buildSimpleDeductionGuide() local
463 TSI = SemaRef.SubstType(TSI, OuterInstantiationArgs, Loc, in buildSimpleDeductionGuide()
[all …]
H A DSemaLambda.cpp811 TypeSourceInfo *TSI = TLB.getTypeSourceInfo(Context, DeductType); in buildLambdaInitCaptureInitialization() local
815 /*VarDecl*/nullptr, DeclarationName(Id), DeductType, TSI, in buildLambdaInitCaptureInitialization()
854 TypeSourceInfo *TSI = Context.getTrivialTypeSourceInfo(InitCaptureType, Loc); in createLambdaInitCaptureVarDecl() local
855 if (auto PETL = TSI->getTypeLoc().getAs<PackExpansionTypeLoc>()) in createLambdaInitCaptureVarDecl()
863 InitCaptureType, TSI, SC_Auto); in createLambdaInitCaptureVarDecl()
2024 TypeSourceInfo *TSI = nullptr; in BuildCaptureField() local
2028 TSI = Var->getTypeSourceInfo(); in BuildCaptureField()
2033 if (!TSI) in BuildCaptureField()
2034 TSI = Context.getTrivialTypeSourceInfo(FieldType, Loc); in BuildCaptureField()
2039 /*Id=*/nullptr, FieldType, TSI, /*BW=*/nullptr, in BuildCaptureField()
/freebsd/usr.bin/script/
H A Dscript.c553 struct timespec tsi, tso; in playback() local
588 tsi = tso; in playback()
595 tsi = tso; in playback()
622 tsi.tv_sec = tso.tv_sec - tsi.tv_sec; in playback()
623 tsi.tv_nsec = tso.tv_nsec - tsi.tv_nsec; in playback()
624 if (tsi.tv_nsec < 0) { in playback()
625 tsi.tv_sec -= 1; in playback()
626 tsi.tv_nsec += 1000000000; in playback()
629 (void)nanosleep(&tsi, NULL); in playback()
630 tsi = tso; in playback()
/freebsd/sys/contrib/device-tree/Bindings/hwmon/
H A Dnuvoton,nct6775.yaml33 nuvoton,tsi-channel-mask:
35 Bitmask indicating which TSI temperature sensor channels are
56 nuvoton,tsi-channel-mask = <0x03>;
H A Damd,sbtsi.yaml8 Sideband interface Temperature Sensor Interface (SB-TSI) compliant
16 SB Temperature Sensor Interface (SB-TSI) is an SMBus compatible
31 SoC register reference. The SB-TSI address is normally 98h for socket
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMallocSizeofChecker.cpp213 const TypeSourceInfo *TSI = nullptr; in checkASTCodeBody() local
215 TSI = CallRec.CastedExprParent.get<const VarDecl *>() in checkASTCodeBody()
218 TSI = CallRec.ExplicitCastType; in checkASTCodeBody()
236 if (TSI) in checkASTCodeBody()
237 Ranges.push_back(TSI->getTypeLoc().getSourceRange()); in checkASTCodeBody()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86MacroFusion.cpp36 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
39 const X86Subtarget &ST = static_cast<const X86Subtarget &>(TSI); in shouldScheduleAdjacent()
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMMacroFusion.cpp52 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
55 const ARMSubtarget &ST = static_cast<const ARMSubtarget&>(TSI); in shouldScheduleAdjacent()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVMacroFusion.cpp
/freebsd/contrib/llvm-project/clang/lib/Interpreter/
H A DInterpreterUtils.cpp27 TypeSourceInfo *TSI = Ctx.getTrivialTypeSourceInfo(Ty, SourceLocation()); in CStyleCastPtrExpr() local
29 S.BuildCStyleCastExpr(SourceLocation(), TSI, SourceLocation(), E).get(); in CStyleCastPtrExpr()
H A DInterpreter.cpp694 TypeSourceInfo *TSI = Ctx.getTrivialTypeSourceInfo(UIntTy); in HandleIntegralOrEnumType() local
696 S.BuildCStyleCastExpr(SourceLocation(), TSI, SourceLocation(), E); in HandleIntegralOrEnumType()
702 TypeSourceInfo *TSI = Ctx.getTrivialTypeSourceInfo(Ctx.VoidPtrTy); in HandlePtrType() local
704 S.BuildCStyleCastExpr(SourceLocation(), TSI, SourceLocation(), E); in HandlePtrType()
767 TypeSourceInfo *TSI = in transformForValuePrinting() local
798 /*TypeIdParens=*/SourceRange(), TSI->getType(), TSI, std::nullopt, in transformForValuePrinting()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprCXX.cpp1109 CXXConstructorDecl *Cons, QualType Ty, TypeSourceInfo *TSI, in CXXTemporaryObjectExpr() argument
1114 CXXTemporaryObjectExprClass, Ty, TSI->getTypeLoc().getBeginLoc(), in CXXTemporaryObjectExpr()
1118 TSI(TSI) { in CXXTemporaryObjectExpr()
1128 TypeSourceInfo *TSI, ArrayRef<Expr *> Args, SourceRange ParenOrBraceRange, in Create() argument
1136 Cons, Ty, TSI, Args, ParenOrBraceRange, HadMultipleCandidates, in Create()
1456 QualType T, TypeSourceInfo *TSI, SourceLocation LParenLoc, in CXXUnresolvedConstructExpr() argument
1459 (TSI->getType()->isLValueReferenceType() ? VK_LValue in CXXUnresolvedConstructExpr()
1460 : TSI->getType()->isRValueReferenceType() ? VK_XValue in CXXUnresolvedConstructExpr()
1463 TypeAndInitForm(TSI, IsListInit), LParenLoc(LParenLoc), in CXXUnresolvedConstructExpr()
1473 const ASTContext &Context, QualType T, TypeSourceInfo *TSI, in Create() argument
[all …]
H A DComputeDependence.cpp340 if (auto *TSI = E->getTypeSourceInfo()) in computeDependence() local
341 D |= toExprDependenceAsWritten(TSI->getType()->getDependence()); in computeDependence()
480 if (auto *TSI = DD->getTypeSourceInfo()) { in computeDependence() local
481 D |= toExprDependenceAsWritten(TSI->getType()->getDependence()); in computeDependence()
780 if (auto *TSI = E->getDestroyedTypeInfo()) in computeDependence() local
781 D |= toExprDependenceAsWritten(TSI->getType()->getDependence()); in computeDependence()
/freebsd/sys/contrib/device-tree/src/powerpc/
H A Dholly.dts2 * Device Tree Source for IBM Holly (PPC 750CL with TSI controller)
45 device_type = "tsi-bridge";
/freebsd/sys/contrib/device-tree/Bindings/mfd/
H A Dda9052-i2c.txt8 - dlg,tsi-as-adc : Boolean, if set the X+, X-, Y+, Y- touchscreen
H A D88pm860x.txt61 marvell,88pm860x-tsi-prebias = <6>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTNodeTraverser.h262 if (const TypeSourceInfo *TSI = A.getTypeSourceInfo()) in Visit()
263 Visit(TSI->getType()); in Visit()
554 if (const auto *TSI = D->getTypeSourceInfo(); VisitLocs && TSI) in VisitVarDecl() local
555 Visit(TSI->getTypeLoc()); in VisitVarDecl()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUMacroFusion.cpp27 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
/freebsd/usr.sbin/pmcstat/
H A Dpmcpl_calltree.c458 #undef TSI in pmcpl_ct_node_printtop()
460 #define TSI(x, y) (pmcpl_ct_topscreen[x][pmcpl_ct_topmax[y].ln_index]) in pmcpl_ct_node_printtop() macro
488 ct = TSI(1, y); in pmcpl_ct_node_printtop()
506 for (x = 1; (ct = TSI(x, y)) != NULL; x++) { in pmcpl_ct_node_printtop()
531 TSI(x-1, y)->pct_image != ct->pct_image) in pmcpl_ct_node_printtop()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMacroFusion.h
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSemaSYCL.h58 TypeSourceInfo *TSI);
/freebsd/share/misc/
H A Diso639478 tsi tsi Tsimshian
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DSelectOptimize.cpp103 const TargetSubtargetInfo *TSI = nullptr; member in __anon135b54a50111::SelectOptimizeImpl
413 TSI = TM->getSubtargetImpl(F); in run()
414 TLI = TSI->getTargetLowering(); in run()
439 TSchedModel.init(TSI); in run()
447 TSI = TM->getSubtargetImpl(F); in runOnFunction()
448 TLI = TSI->getTargetLowering(); in runOnFunction()
467 TSchedModel.init(TSI); in runOnFunction()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCMacroFusion.cpp235 const TargetSubtargetInfo &TSI, in shouldScheduleAdjacent() argument
242 const PPCSubtarget &ST = static_cast<const PPCSubtarget&>(TSI); in shouldScheduleAdjacent()

1234