HomeSort by relevance Sort by last modified time
    Searched refs:FPT (Results 1 - 25 of 41) sorted by null

1 2

  /external/compiler-rt/test/profile/Inputs/
instrprof-value-prof-evict.c 47 typedef void (*FPT)(void);
51 FPT getCalleeFunc(int I) { return CalleeAddrs[I]; }
59 FPT FP = getCalleeFunc(Sequence[I]); \
instrprof-value-prof-real.c 27 typedef void (*FPT)(void);
29 FPT getFunc(int I) { return CalleeAddrs[I]; }
41 FPT Fp = getFunc(I);
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CheckSecuritySyntaxOnly.cpp 310 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
311 if (!FPT)
315 if (FPT->getNumParams() != 1)
319 const PointerType *PT = FPT->getParamType(0)->getAs<PointerType>();
346 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>();
347 if (!FPT)
351 if (FPT->getNumParams() != 2)
355 if (!FPT->getParamType(0)->isIntegralOrUnscopedEnumerationType())
359 const PointerType *PT = FPT->getParamType(1)->getAs<PointerType>();
390 const FunctionProtoType *FPT = FD->getType()->getAs<FunctionProtoType>()
    [all...]
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 229 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
230 for (unsigned i = 0, e = FPT->getNumParams(); i != e; i++)
231 if (!isFuncParamTypeConvertible(FPT->getParamType(i)))
323 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
324 for (unsigned i = 0, e = FPT->getNumParams(); i != e; i++)
325 if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>())
345 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
347 CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)), FD);
CGExprCXX.cpp 56 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
57 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size(), MD);
63 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
67 FPT->getNumParams() == 0 &&
77 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
81 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
295 const FunctionProtoType *FPT =
328 RequiredArgs::forPrototypePlus(FPT, 1, /*FD=*/nullptr);
331 EmitCallArgs(Args, FPT, E->arguments());
332 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required)
    [all...]
CGVTables.cpp 148 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
149 QualType ResultType = FPT->getReturnType();
217 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
222 : FPT->getReturnType();
290 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
294 CallArgs, FPT, RequiredArgs::forPrototypePlus(FPT, 1, MD));
314 : FPT->getReturnType();
    [all...]
CGCXXABI.cpp 83 const FunctionProtoType *FPT =
88 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr));
CGCall.cpp 102 /// Adds the formal paramaters in FPT to the given prefix. If any parameter in
103 /// FPT has pass_object_size attrs, then we'll add parameters for those, too.
107 CanQual<FunctionProtoType> FPT,
110 if (FPT->hasExtParameterInfos() || !paramInfos.empty()) {
112 auto protoParamInfos = FPT->getExtParameterInfos();
120 prefix.append(FPT->param_type_begin(), FPT->param_type_end());
124 // In the vast majority cases, we'll have precisely FPT->getNumParams()
127 prefix.reserve(prefix.size() + FPT->getNumParams());
129 assert(FD->getNumParams() == FPT->getNumParams())
    [all...]
CGDebugInfo.cpp     [all...]
MicrosoftCXXABI.cpp     [all...]
CGClass.cpp     [all...]
  /external/syzkaller/tools/syz-declextract/
syz-declextract.cpp 63 if (auto *FPT = D->getType()->getAs<FunctionProtoType>()) {
64 if (FPT->getExtInfo().getCC() != CC_X86StdCall)
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 147 Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
148 if (FPT->getExceptionSpecType() == EST_Unparsed) {
153 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
154 return FPT;
156 FunctionDecl *SourceDecl = FPT->getExceptionSpecDecl();
    [all...]
SemaLambda.cpp 367 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>();
368 QualType Result = FPT->getReturnType();
371 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(),
372 FPT->getExtProtoInfo());
    [all...]
Sema.cpp     [all...]
  /bionic/libc/stdio/
vfprintf.cpp 419 flags |= FPT;
630 if ((flags & FPT) == 0) {
vfwprintf.cpp 405 flags |= FPT;
619 if ((flags & FPT) == 0) {
printf_common.h 193 #define FPT 0x0100 /* Floating point number */
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 90 #define FPT 0x800 /* Floating point number */
vfwprintf.c 601 #define FPT 0x100 /* Floating point number */
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 83 const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT);
84 if (FPT) {
85 for (QualType SugarPT : FPT->param_types()) {
98 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo())
    [all...]
Decl.cpp     [all...]
Type.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 1450 milliseconds

1 2