Searched refs:UD (Results 1 - 24 of 24) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp298 void attachDirective(DiagnosticsEngine &Diags, const UnattachedDirective &UD, argument
304 UD.RegexKind, UD.DirectivePos, ExpectedLoc, MatchAnyFileAndLine,
305 MatchAnyLine, UD.Text, UD.Min, UD.Max);
309 Diags.Report(UD.ContentBegin, diag::err_verify_invalid_content)
310 << (UD.RegexKind ? "regex" : "string") << Error;
313 UD.DL->push_back(std::move(D));
358 for (auto &UD
369 addDirective(StringRef MarkerName, const UnattachedDirective &UD) argument
[all...]
/freebsd-13-stable/contrib/ofed/libibverbs/
H A Dopcode.h142 /* UD */
143 IBV_OPCODE(UD, SEND_ONLY),
144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd-13-stable/sys/ofed/include/rdma/
H A Dib_pack.h178 /* UD */
179 IB_OPCODE(UD, SEND_ONLY),
180 IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DGVNHoist.cpp536 if (auto *UD = dyn_cast<MemoryUseOrDef>(D))
537 if (!firstInBB(UD->getMemoryInst(), NewPt))
608 MemoryUseOrDef *UD = MSSA->getMemoryAccess(Insn); local
609 if (safeToHoistLdSt(BB->getTerminator(), Insn, UD, K, NumBBsOnAllPaths))
/freebsd-13-stable/sys/dev/mthca/
H A Dmthca_qp.c55 MTHCA_UD_HEADER_SIZE = 72, /* largest UD header possible */
284 enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS }; enumerator in enum:__anon13388
291 case UD: return MTHCA_QP_ST_UD;
586 if (qp->transport == MLX || qp->transport == UD)
924 case UD:
993 case UD:
1281 case IB_QPT_UD: qp->transport = UD; break;
1475 /* Create UD header for an MLX send and build a data segment for it */
1708 case UD:
2049 case UD
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp10801 const ParsedAttributesView &AttrList, UsingDirectiveDecl *&UD) {
10918 UD = UsingDirectiveDecl::Create(Context, Parent,
10925 UD->setImplicit();
10926 Parent->addDecl(UD);
11498 NamedDecl *UD =
11502 if (UD)
11503 PushOnScopeChains(UD, S, /*AddToContext*/ false);
11505 return UD;
11696 UsingDecl *UD,
11714 UD
[all...]
H A DSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
144 DeclContext *NS = UD->getNominatedNamespace();
148 addUsingDirective(UD, EffectiveDC);
158 for (auto UD : DC->using_directives()) {
159 DeclContext *NS = UD->getNominatedNamespace();
160 if (SemaRef.isVisible(UD) && visited.insert(NS).second) {
161 addUsingDirective(UD, EffectiveDC);
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { argument
183 DeclContext *Common = UD->getNominatedNamespace();
188 list.push_back(UnqualUsingEntry(UD
[all...]
H A DSemaTemplateInstantiateDecl.cpp3128 NamedDecl *UD = SemaRef.BuildUsingDeclaration( local
3133 if (UD)
3134 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
3136 return UD;
3151 for (auto *UD : D->expansions()) {
3153 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
H A DSemaDeclAttr.cpp1467 RecordDecl *UD = UT->getDecl(); local
1468 for (const auto *I : UD->fields()) {
H A DSemaOverload.cpp2044 RecordDecl *UD = UT->getDecl();
2046 for (const auto *it : UD->fields()) {
H A DTreeTransform.h11693 if (auto *UD = dyn_cast<UsingDecl>(D)) {
11694 for (auto *SD : UD->shadows())
H A DSemaExpr.cpp9250 RecordDecl *UD = UT->getDecl();
9253 for (auto *it : UD->fields()) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h236 void VisitUsingDecl(const UsingDecl *UD);
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp743 void JSONNodeDumper::VisitUsingDecl(const UsingDecl *UD) { argument
745 if (const NestedNameSpecifier *NNS = UD->getQualifier()) {
747 NNS->print(SOS, UD->getASTContext().getPrintingPolicy());
749 Name += UD->getNameAsString();
H A DDecl.cpp1713 if (auto *UD = dyn_cast<UsingDecl>(this)) {
1715 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
1765 while (auto *UD = dyn_cast<UsingShadowDecl>(ND))
1766 ND = UD->getTargetDecl();
H A DASTContext.cpp9118 RecordDecl *UD = UT->getDecl(); local
9119 if (UD->hasAttr<TransparentUnionAttr>()) {
9120 for (const auto *I : UD->fields()) {
/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h488 void EmitUsingDirective(const UsingDirectiveDecl &UD);
494 void EmitUsingDecl(const UsingDecl &UD);
H A DCGDebugInfo.cpp4796 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { argument
4799 const NamespaceDecl *NSDecl = UD.getNominatedNamespace();
4802 auto Loc = UD.getLocation();
4804 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
4809 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { argument
4812 assert(UD.shadow_size() &&
4816 const UsingShadowDecl &USD = **UD.shadow_begin();
H A DTargetInfo.cpp191 const RecordDecl *UD = UT->getDecl(); local
192 if (UD->hasAttr<TransparentUnionAttr>()) {
193 assert(!UD->field_empty() && "sema created an empty transparent union");
194 return UD->field_begin()->getType();
H A DCGOpenMPRuntime.cpp3402 RecordDecl *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union); local
3403 UD->startDefinition();
3404 addFieldToRecordDecl(C, UD, KmpInt32Ty);
3405 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy);
3406 UD->completeDefinition();
3407 QualType KmpCmplrdataTy = C.getRecordType(UD);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp1746 uint32_t UD = Diff; local
1748 uint32_t A = std::min<uint32_t>(R.Align, 1u << countTrailingZeros(UD));
/freebsd-13-stable/stand/i386/btx/btx/
H A Dbtx.S325 push $0x6 # Int 0x6: #UD
/freebsd-13-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp753 Decl *UD = Actions.ActOnUsingDeclaration(getCurScope(), AS, UsingLoc, local
756 if (UD)
757 DeclsInGroup.push_back(UD);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5384 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
5387 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
5410 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);

Completed in 838 milliseconds