HomeSort by: relevance | last modified time | path
    Searched defs:FPT (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/sys/external/bsd/compiler_rt/dist/test/profile/Inputs/
instrprof-value-prof-real.c 27 typedef void (*FPT)(void);
29 FPT getFunc(int I) { return CalleeAddrs[I]; }
34 FPT Fp = getFunc(I);
  /src/lib/libc/stdio/
vsnprintf_ss.c 90 #define FPT 0x800 /* Floating point number */
vfwprintf.c 608 #define FPT 0x100 /* Floating point number */
1173 flags |= FPT;
1449 if ((flags & FPT) == 0) {
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGCXXABI.cpp 48 const FunctionProtoType *FPT =
53 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr));
55 return CGCallee::forDirect(FnPtr, FPT);
CGVTables.cpp 161 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
162 QualType ResultType = FPT->getReturnType();
339 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
343 CallArgs, FPT, RequiredArgs::forPrototypePlus(FPT, 1), PrefixArgs);
363 : FPT->getReturnType();
CGCall.cpp 143 /// Adds the formal parameters in FPT to the given prefix. If any parameter in
144 /// FPT has pass_object_size attrs, then we'll add parameters for those, too.
148 CanQual<FunctionProtoType> FPT) {
150 if (!FPT->hasExtParameterInfos()) {
153 prefix.append(FPT->param_type_begin(), FPT->param_type_end());
158 // In the vast majority of cases, we'll have precisely FPT->getNumParams()
161 prefix.reserve(prefix.size() + FPT->getNumParams());
163 auto ExtInfos = FPT->getExtParameterInfos();
164 assert(ExtInfos.size() == FPT->getNumParams())
    [all...]
CGExprCXX.cpp 55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
68 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
72 FPT->getNumParams() == 0 &&
83 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
88 Args, FPT, CallInfo.ReqArgs, CallInfo.PrefixSize);
439 const auto *FPT = MPT->getPointeeType()->castAs<FunctionProtoType>();
470 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
473 EmitCallArgs(Args, FPT, E->arguments());
474 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required
    [all...]
CGClass.cpp 2092 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>();
2096 EmitCallArgs(Args, FPT, E->arguments(), E->getConstructor(),
2329 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>();
2337 QualType QT = *(FPT->param_type_begin());
2343 EmitCallArgs(Args, FPT, drop_begin(E->arguments(), 1), E->getConstructor(),
2877 const FunctionProtoType *FPT =
2879 QualType resultType = FPT->getReturnType();
CGDebugInfo.cpp 1333 else if (const auto *FPT = dyn_cast<FunctionProtoType>(Ty)) {
1334 for (const QualType &ParamType : FPT->param_types())
1336 if (FPT->isVariadic())
3028 const FunctionProtoType *FPT =
3032 CXXMethodDecl::getThisType(FPT, Ty->getMostRecentCXXRecordDecl()),
3033 FPT, U, false),
3842 else if (auto *FPT = dyn_cast<FunctionProtoType>(FnType))
3843 if (FPT->getNumParams() > 1)
3844 SelfDeclTy = FPT->getParamType(0);
3869 if (const auto *FPT = dyn_cast<FunctionProtoType>(FnType)
    [all...]
ItaniumCXXABI.cpp 628 const FunctionProtoType *FPT =
634 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr));
845 CGCallee Callee(FPT, CalleePtr);
1066 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
1069 if (Types.isFuncTypeConvertible(FPT)) {
MicrosoftCXXABI.cpp 1312 const FunctionProtoType *FPT = CD->getType()->castAs<FunctionProtoType>();
1314 if (FPT->isVariadic()) {
1502 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
1503 if (FPT->isVariadic())
1595 const FunctionProtoType *FPT = D->getType()->castAs<FunctionProtoType>();
1602 if (FPT->isVariadic()) {
2851 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
2855 if (Types.isFuncTypeConvertible(FPT)) {
3405 const FunctionProtoType *FPT =
3409 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr))
    [all...]
  /src/sys/kern/
subr_prf.c 1203 #define FPT 0x800 /* Floating point number */
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 353 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
354 if (!FPT)
358 if (FPT->getNumParams() != 3)
363 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>();
372 if (!FPT->getParamType(2)->isIntegralOrUnscopedEnumerationType())
395 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
396 if (!FPT)
400 if (FPT->getNumParams() != 3)
405 const PointerType *PT = FPT->getParamType(i)->getAs<PointerType>();
414 if (!FPT->getParamType(2)->isIntegralOrUnscopedEnumerationType()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
ASTDiagnostic.cpp 86 const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT);
87 if (FPT) {
88 for (QualType SugarPT : FPT->param_types()) {
101 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo())
Decl.cpp 3110 const auto *FPT = getType()->castAs<FunctionProtoType>();
3111 if (FPT->getNumParams() == 0 || FPT->getNumParams() > 3 || FPT->isVariadic())
3116 if (FPT->getNumParams() == 1)
3120 QualType Ty = FPT->getParamType(Params);
3125 Ty = Params < FPT->getNumParams() ? FPT->getParamType(Params) : QualType();
3159 return Params == FPT->getNumParams();
3347 const auto *FPT = getType()->getAs<FunctionProtoType>()
    [all...]
Type.cpp 3890 const auto *FPT = cast<FunctionProtoType>(T);
3891 CachedProperties result = Cache::get(FPT->getReturnType());
3892 for (const auto &ai : FPT->param_types())
3979 const auto *FPT = cast<FunctionProtoType>(T);
3980 LinkageInfo LV = computeTypeLinkageInfo(FPT->getReturnType());
3981 for (const auto &ai : FPT->param_types())
ASTContext.cpp 3043 const auto *FPT = cast<FunctionProtoType>(T);
3044 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3046 Result = getFunctionType(FPT->getReturnType(), FPT->getParamTypes(), EPI);
3056 const auto *FPT = FD->getType()->castAs<FunctionProtoType>();
3057 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
3058 FD->setType(getFunctionType(ResultType, FPT->getParamTypes(), EPI));
4260 if (FunctionProtoType *FPT =
4262 QualType Existing = QualType(FPT, 0);
4270 EPI.ExceptionSpec.NoexceptExpr == FPT->getNoexceptExpr()
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
AnalysisBasedWarnings.cpp 372 const auto *FPT = FD->getType()->castAs<FunctionProtoType>();
373 if (FPT->isNothrow() || FD->hasAttr<NoThrowAttr>())
Sema.cpp 1964 auto *FPT = DD->getType()->getAs<FunctionProtoType>();
1965 S.ResolveExceptionSpec(Loc, FPT);
2300 if (const FunctionProtoType *FPT =
2302 if (FPT->getNumParams() == 0)
SemaLambda.cpp 373 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>();
374 QualType Result = FPT->getReturnType();
377 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(),
378 FPT->getExtProtoInfo());
SemaStmt.cpp 3585 const FunctionProtoType *FPT =
3587 return FPT->getReturnType()->isUndeducedType();
SemaTemplateInstantiateDecl.cpp 3751 auto *FPT = T->castAs<FunctionProtoType>();
3753 SemaRef.Context.BoolTy, FPT->getParamTypes(), FPT->getExtProtoInfo());
SemaTemplate.cpp 8989 const FunctionProtoType *FPT = FT->castAs<FunctionProtoType>();
8990 FunctionProtoType::ExtProtoInfo EPI = FPT->getExtProtoInfo();
8992 FT = Context.getFunctionType(FPT->getReturnType(),
8993 FPT->getParamTypes(), EPI);
10237 if (auto *FPT = R->getAs<FunctionProtoType>())
10238 if (FPT->hasExceptionSpec()) {
10247 Specialization->getLocation(), FPT, D.getBeginLoc());
SemaType.cpp 2036 const FunctionProtoType *FPT = T->getAs<FunctionProtoType>();
2037 if (!FPT ||
2038 (FPT->getMethodQuals().empty() && FPT->getRefQualifier() == RQ_None))
2043 << getFunctionQualifiersAsString(FPT);
2048 const FunctionProtoType *FPT = T->getAs<FunctionProtoType>();
2049 if (!FPT ||
2050 (FPT->getMethodQuals().empty() && FPT->getRefQualifier() == RQ_None))
2054 << T << getFunctionQualifiersAsString(FPT);
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderDecl.cpp 3620 auto *FPT = FD->getType()->getAs<FunctionProtoType>();
3622 if (FPT && PrevFPT) {
3625 bool IsUnresolved = isUnresolvedExceptionSpec(FPT->getExceptionSpecType());
3634 bool IsUndeduced = isUndeducedReturnType(FPT->getReturnType());
3639 (IsUndeduced ? PrevFPT : FPT)->getReturnType()});
4627 auto *FPT = FD->getType()->castAs<FunctionProtoType>();
4630 if (isUnresolvedExceptionSpec(FPT->getExceptionSpecType())) {
4632 FPT->getReturnType(), FPT->getParamTypes(),
4633 FPT->getExtProtoInfo().withExceptionSpec(ESI)))
    [all...]

Completed in 114 milliseconds

1 2