Searched refs:FD (Results 226 - 250 of 280) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h534 static bool isPotentialConstantExpr(const FunctionDecl *FD,
540 /// it were in function FD marked constexpr. Return false if the function can
544 const FunctionDecl *FD,
2800 const FunctionDecl *FD = getDirectCallee();
2801 return getNumArgs() == 1 && FD && FD->isInStdNamespace() &&
2802 FD->getIdentifier() && FD->getIdentifier()->isStr("move");
4527 void setInitializedFieldInUnion(FieldDecl *FD) { argument
4528 assert((FD
4782 setField(FieldDecl *FD) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp1923 else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(*D)) {
1925 canModify(FD))
1926 migrateCFAnnotation(Ctx, FD);
2215 int FD; local
2217 path::extension(FE->getName()).drop_front(), FD,
2223 llvm::raw_fd_ostream TmpOut(FD, /*shouldClose=*/true);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGExprCXX.cpp1339 if (auto *FD = dyn_cast<FunctionDecl>(Decl))
1340 if (Ctx.hasSameType(FD->getType(), QualType(Type, 0)))
1341 return EmitNewDeleteCall(*this, FD, Type, Args);
1354 static UsualDeleteParams getUsualDeleteParams(const FunctionDecl *FD) { argument
1357 const FunctionProtoType *FPT = FD->getType()->castAs<FunctionProtoType>();
1364 if (FD->isDestroyingOperatorDelete()) {
H A DCGExprAgg.cpp1865 CodeGenFunction::getOverlapForFieldInit(const FieldDecl *FD) { argument
1866 if (!FD->hasAttr<NoUniqueAddressAttr>() || !FD->getType()->isRecordType())
1872 const RecordDecl *ClassRD = FD->getParent();
1874 if (Layout.getFieldOffset(FD->getFieldIndex()) +
1875 getContext().getTypeSize(FD->getType()) <=
H A DCGOpenMPRuntime.h1603 /// \param FD Function marked as 'declare simd'.
1606 virtual void emitDeclareSimdFunction(const FunctionDecl *FD,
1621 /// \param FD Field decl from captured record for the parameter.
1623 virtual const VarDecl *translateParameter(const FieldDecl *FD, argument
2276 /// \param FD Field decl from captured record for the parameter.
2278 const VarDecl *translateParameter(const FieldDecl *FD,
H A DCodeGenAction.cpp620 if (const Decl *FD = Gen->GetDeclForMangledName(D.getFunction().getName()))
621 Loc = FD->getASTContext().getFullLoc(FD->getLocation());
H A DCGObjC.cpp3532 FunctionDecl *FD = FunctionDecl::Create(
3537 ImplicitParamDecl DstDecl(C, FD, SourceLocation(), /*Id=*/nullptr, DestTy,
3540 ImplicitParamDecl SrcDecl(C, FD, SourceLocation(), /*Id=*/nullptr, SrcTy,
3556 StartFunction(FD, ReturnTy, Fn, FI, args);
3616 FunctionDecl *FD = FunctionDecl::Create(
3621 ImplicitParamDecl DstDecl(C, FD, SourceLocation(), /*Id=*/nullptr, DestTy,
3624 ImplicitParamDecl SrcDecl(C, FD, SourceLocation(), /*Id=*/nullptr, SrcTy,
3639 StartFunction(FD, ReturnTy, Fn, FI, args);
H A DCGCUDANV.cpp282 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Result))
283 cudaLaunchKernelFD = FD;
H A DCGBuiltin.cpp82 llvm::Constant *CodeGenModule::getBuiltinLibFunction(const FunctionDecl *FD, argument
88 GlobalDecl D(FD);
93 if (FD->hasAttr<AsmLabelAttr>())
99 cast<llvm::FunctionType>(getTypes().ConvertType(FD->getType()));
517 static RValue emitLibraryCall(CodeGenFunction &CGF, const FunctionDecl *FD, argument
519 CGCallee callee = CGCallee::forDirect(calleeValue, GlobalDecl(FD));
1251 FunctionDecl *FD = FunctionDecl::Create(
1255 StartFunction(FD, ReturnTy, Fn, FI, Args);
1500 for (const auto *FD : RD->fields()) {
1504 FieldPtr, CGF.ConvertType(Context.getPointerType(FD
[all...]
H A DCGCleanup.h611 static const EHPersonality &get(CodeGenModule &CGM, const FunctionDecl *FD);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DTextNodeDumper.cpp258 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
259 if (FD->isConstexprSpecified())
261 if (FD->isConsteval())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DDebugger.cpp1180 int FD; local
1182 log_file, FD, llvm::sys::fs::CD_CreateAlways, flags)) {
1187 std::make_shared<llvm::raw_fd_ostream>(FD, should_close, unbuffered);
/freebsd-11-stable/sys/contrib/octeon-sdk/cvmx-malloc/
H A Dmalloc.c1941 #define unlink(P, BK, FD) { \
1942 FD = P->fd; \
1944 FD->bk = BK; \
1945 BK->fd = FD; \
/freebsd-11-stable/libexec/getty/
H A Dsubr.c451 f |= adelay(FD, ffdelay);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DExecutionDriver.cpp281 if (writeProgramToFile(Temp->FD, M)) {
H A DExtractFunction.cpp392 raw_fd_ostream OS(Temp->FD, /*shouldClose*/ false);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaAccess.cpp1107 else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
1108 PrevDecl = FD->getPreviousDecl();
1921 else if (FunctionDecl *FD = getCurFunctionDecl()) {
1923 = dyn_cast<ObjCImplDecl>(FD->getLexicalDeclContext())) {
H A DSemaCodeComplete.cpp5172 FunctionDecl *FD = nullptr; local
5174 FD = dyn_cast<FunctionDecl>(MCE->getMemberDecl());
5176 FD = dyn_cast<FunctionDecl>(DRE->getDecl());
5177 if (FD) { // We check whether it's a resolved function declaration.
5179 !FD->getType()->getAs<FunctionProtoType>())
5180 Results.push_back(ResultCandidate(FD));
5182 AddOverloadCandidate(FD, DeclAccessPair::make(FD, FD->getAccess()),
5246 if (auto *FD
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A Draw_ostream.h398 int FD; member in class:llvm::raw_fd_ostream
450 /// FD is the file descriptor that this writes to. If ShouldClose is true,
451 /// this closes the file when the stream is destroyed. If FD is for stdout or
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/Interp/
H A DInterp.h659 if (auto *FD = Ptr.getField()) {
660 Ptr.deref<T>() = Value.truncate(FD->getBitWidthValue(S.getCtx()));
673 if (auto *FD = Ptr.getField()) {
674 Ptr.deref<T>() = Value.truncate(FD->getBitWidthValue(S.getCtx()));
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp240 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
243 const IdentifierInfo *II = FD->getIdentifier();
244 if (!II || !(II->getName() == "main" && FD->getNumParams() > 0))
247 const ParmVarDecl *PD = FD->getParamDecl(0);
2461 if (const FieldDecl *FD = LambdaCaptureFields[VD]) {
2465 VInfo = std::make_pair(state->getLValue(FD, CXXThisVal), FD->getType());
2494 if (const auto *FD = dyn_cast<FunctionDecl>(D)) {
2495 SVal V = svalBuilder.getFunctionPointer(FD);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Analysis/
H A DCFG.cpp837 void appendMemberDtor(CFGBlock *B, FieldDecl *FD) { argument
838 B->appendMemberDtor(FD, cfg->getBumpVectorContext());
2621 if (FunctionDecl *FD = C->getDirectCallee()) {
2626 if (!FD->isVariadic())
2629 if (FD->isNoReturn() || C->isBuiltinAssumeFalse(*Context))
2631 if (FD->hasAttr<NoThrowAttr>())
2633 if (FD->getBuiltinID() == Builtin::BI__builtin_object_size ||
2634 FD->getBuiltinID() == Builtin::BI__builtin_dynamic_object_size)
5571 const FieldDecl *FD = E.castAs<CFGMemberDtor>().getFieldDecl(); local
5572 const Type *T = FD
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp7110 if (auto *FD = dyn_cast<FunctionDecl>(D)) {
7111 if (auto *Template = FD->getPrimaryTemplate())
8120 FieldDecl *FD = cast<FieldDecl>(GetDecl(DelayedDeleteExprs[Idx++]));
8126 Exprs[FD].push_back(std::make_pair(DeleteLoc, IsArrayForm));
8252 FunctionDecl *FD = cast<FunctionDecl>(GetDecl(LateParsedTemplates[Idx++]));
8265 LPTMap.insert(std::make_pair(FD, std::move(LT)));
8514 ExternalASTSource::ExtKind ASTReader::hasExternalDefinitions(const Decl *FD) {
8515 auto I = DefinitionSource.find(FD);
9092 auto *FD = PendingFunctionTypes[I].first;
9093 FD
[all...]
/freebsd-11-stable/crypto/openssh/contrib/redhat/
H A Dopenssh.spec502 - clear fd_sets correctly (one bit per FD, not one byte per FD) (#43221)
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DCStringChecker.cpp1011 if (const auto *FD = cast<FunctionCodeRegion>(MR)->getDecl())
1012 os << "the address of the function '" << *FD << '\''; local
2261 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(Call.getDecl()); local
2262 if (!FD)

Completed in 643 milliseconds

1234567891011>>