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

1 2

  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/
floating_point_comparison.hpp 54 // FPT is Floating-Point Type: float, double, long double or User-Defined.
55 template<typename FPT>
56 inline FPT
57 fpt_abs( FPT fpv )
59 return fpv < static_cast<FPT>(0) ? -fpv : fpv;
64 template<typename FPT>
66 static FPT min_value()
68 return std::numeric_limits<FPT>::is_specialized
69 ? (std::numeric_limits<FPT>::min)()
72 static FPT max_value(
    [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)))
312 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT))
313 for (unsigned i = 0, e = FPT->getNumParams(); i != e; i++)
314 if (const RecordType *RT = FPT->getParamType(i)->getAs<RecordType>())
334 if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT)) {
336 CanQual<FunctionProtoType>::CreateUnsafe(QualType(FPT, 0)), FD);
CGExprCXX.cpp 55 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
56 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size());
62 CGF.EmitCallArgs(Args, FPT, drop_begin(CE->arguments(), ArgsToSkip),
66 FPT->getNumParams() == 0 &&
76 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>();
81 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required),
294 const FunctionProtoType *FPT =
326 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, 1);
329 EmitCallArgs(Args, FPT, E->arguments(), E->getDirectCallee());
330 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required)
    [all...]
CGVTables.cpp 148 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
149 QualType ResultType = FPT->getReturnType();
219 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
224 : FPT->getReturnType();
292 const FunctionProtoType *FPT = MD->getType()->getAs<FunctionProtoType>();
296 CGM.getTypes().arrangeCXXMethodCall(CallArgs, FPT,
297 RequiredArgs::forPrototypePlus(FPT, 1));
317 : FPT->getReturnType();
    [all...]
CGCXXABI.cpp 83 const FunctionProtoType *FPT =
88 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr));
CGCall.cpp 96 /// Adds the formal paramaters in FPT to the given prefix. If any parameter in
97 /// FPT has pass_object_size attrs, then we'll add parameters for those, too.
100 const CanQual<FunctionProtoType> &FPT,
104 prefix.append(FPT->param_type_begin(), FPT->param_type_end());
108 // In the vast majority cases, we'll have precisely FPT->getNumParams()
111 prefix.reserve(prefix.size() + FPT->getNumParams());
113 assert(FD->getNumParams() == FPT->getNumParams());
114 for (unsigned I = 0, E = FPT->getNumParams(); I != E; ++I) {
115 prefix.push_back(FPT->getParamType(I))
    [all...]
CGClass.cpp     [all...]
CGDebugInfo.cpp 856 else if (const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(Ty)) {
857 for (unsigned i = 0, e = FPT->getNumParams(); i != e; ++i)
858 EltTys.push_back(getOrCreateType(FPT->getParamType(i), Unit));
859 if (FPT->isVariadic())
    [all...]
MicrosoftCXXABI.cpp     [all...]
CGException.cpp     [all...]
ItaniumCXXABI.cpp 532 const FunctionProtoType *FPT =
538 CGM.getTypes().arrangeCXXMethodType(RD, FPT, /*FD=*/nullptr));
    [all...]
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 141 Sema::ResolveExceptionSpec(SourceLocation Loc, const FunctionProtoType *FPT) {
142 if (FPT->getExceptionSpecType() == EST_Unparsed) {
147 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()))
148 return FPT;
150 FunctionDecl *SourceDecl = FPT->getExceptionSpecDecl();
    [all...]
SemaLambda.cpp 365 const FunctionProtoType *FPT = MethodType->castAs<FunctionProtoType>();
366 QualType Result = FPT->getReturnType();
369 MethodType = Context.getFunctionType(Result, FPT->getParamTypes(),
370 FPT->getExtProtoInfo());
    [all...]
Sema.cpp     [all...]
SemaDecl.cpp     [all...]
SemaTemplate.cpp     [all...]
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vfprintf.c 250 #define FPT 0x0100 /* Floating point number */
773 flags |= FPT;
1021 if ((flags & FPT) == 0) {
    [all...]
vfwprintf.c 272 #define FPT 0x0100 /* Floating point number */
736 flags |= FPT;
981 if ((flags & FPT) == 0) {
    [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 82 const FunctionProtoType *FPT = dyn_cast<FunctionProtoType>(FT);
83 if (FPT) {
84 for (QualType SugarPT : FPT->param_types()) {
97 QT = FPT ? Context.getFunctionType(RT, Args, FPT->getExtProtoInfo())
    [all...]
Decl.cpp     [all...]
Type.cpp     [all...]
ASTContext.cpp     [all...]
MicrosoftMangle.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReaderDecl.cpp     [all...]

Completed in 573 milliseconds

1 2