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

/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/
H A DVerifyDiagnosticConsumer.cpp296 void attachDirective(DiagnosticsEngine &Diags, const UnattachedDirective &UD, argument
300 Directive::create(UD.RegexKind, UD.DirectivePos, ExpectedLoc,
301 MatchAnyLine, UD.Text, UD.Min, UD.Max);
305 Diags.Report(UD.ContentBegin, diag::err_verify_invalid_content)
306 << (UD.RegexKind ? "regex" : "string") << Error;
309 UD.DL->push_back(std::move(D));
354 for (auto &UD
365 addDirective(StringRef MarkerName, const UnattachedDirective &UD) argument
[all...]
/freebsd-12-stable/contrib/ofed/libibverbs/
H A Dopcode.h142 /* UD */
143 IBV_OPCODE(UD, SEND_ONLY),
144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/freebsd-12-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-12-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-12-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:__anon14393
291 case UD: return MTHCA_QP_ST_UD;
586 if (qp->transport == MLX || qp->transport == UD)
924 case UD:
993 case UD:
1283 case IB_QPT_UD: qp->transport = UD; break;
1477 /* Create UD header for an MLX send and build a data segment for it */
1710 case UD:
2051 case UD
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclCXX.cpp10504 const ParsedAttributesView &AttrList, UsingDirectiveDecl *&UD) {
10621 UD = UsingDirectiveDecl::Create(Context, Parent,
10628 UD->setImplicit();
10629 Parent->addDecl(UD);
11202 NamedDecl *UD =
11206 if (UD)
11207 PushOnScopeChains(UD, S, /*AddToContext*/ false);
11209 return UD;
11400 UsingDecl *UD,
11418 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.cpp3124 NamedDecl *UD = SemaRef.BuildUsingDeclaration( local
3129 if (UD)
3130 SemaRef.Context.setInstantiatedFromUsingDecl(UD, D);
3132 return UD;
3147 for (auto *UD : D->expansions()) {
3149 SemaRef.FindInstantiatedDecl(D->getLocation(), UD, TemplateArgs))
H A DSemaDeclAttr.cpp1469 RecordDecl *UD = UT->getDecl(); local
1470 for (const auto *I : UD->fields()) {
H A DSemaOverload.cpp2033 RecordDecl *UD = UT->getDecl();
2035 for (const auto *it : UD->fields()) {
H A DTreeTransform.h11038 if (auto *UD = dyn_cast<UsingDecl>(D)) {
11039 for (auto *SD : UD->shadows())
H A DSemaExpr.cpp8625 RecordDecl *UD = UT->getDecl();
8628 for (auto *it : UD->fields()) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/AST/
H A DJSONNodeDumper.cpp735 void JSONNodeDumper::VisitUsingDecl(const UsingDecl *UD) { argument
737 if (const NestedNameSpecifier *NNS = UD->getQualifier()) {
739 NNS->print(SOS, UD->getASTContext().getPrintingPolicy());
741 Name += UD->getNameAsString();
H A DDecl.cpp1726 if (auto *UD = dyn_cast<UsingDecl>(this)) {
1728 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) ==
1778 while (auto *UD = dyn_cast<UsingShadowDecl>(ND))
1779 ND = UD->getTargetDecl();
H A DASTContext.cpp8772 RecordDecl *UD = UT->getDecl(); local
8773 if (UD->hasAttr<TransparentUnionAttr>()) {
8774 for (const auto *I : UD->fields()) {
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/AST/
H A DJSONNodeDumper.h232 void VisitUsingDecl(const UsingDecl *UD);
/freebsd-12-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.h485 void EmitUsingDirective(const UsingDirectiveDecl &UD);
491 void EmitUsingDecl(const UsingDecl &UD);
H A DCGDebugInfo.cpp4639 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { argument
4642 const NamespaceDecl *NSDecl = UD.getNominatedNamespace();
4645 auto Loc = UD.getLocation();
4647 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())),
4652 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { argument
4655 assert(UD.shadow_size() &&
4659 const UsingShadowDecl &USD = **UD.shadow_begin();
H A DTargetInfo.cpp178 const RecordDecl *UD = UT->getDecl(); local
179 if (UD->hasAttr<TransparentUnionAttr>()) {
180 assert(!UD->field_empty() && "sema created an empty transparent union");
181 return UD->field_begin()->getType();
H A DCGOpenMPRuntime.cpp4416 RecordDecl *UD = C.buildImplicitRecord("kmp_cmplrdata_t", TTK_Union); local
4417 UD->startDefinition();
4418 addFieldToRecordDecl(C, UD, KmpInt32Ty);
4419 addFieldToRecordDecl(C, UD, KmpRoutineEntryPointerQTy);
4420 UD->completeDefinition();
4421 QualType KmpCmplrdataTy = C.getRecordType(UD);
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonConstExtenders.cpp1727 uint32_t UD = Diff; local
1729 uint32_t A = std::min<uint32_t>(R.Align, 1u << countTrailingZeros(UD));
/freebsd-12-stable/stand/i386/btx/btx/
H A Dbtx.S325 push $0x6 # Int 0x6: #UD
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseDeclCXX.cpp747 Decl *UD = Actions.ActOnUsingDeclaration(getCurScope(), AS, UsingLoc, local
750 if (UD)
751 DeclsInGroup.push_back(UD);
/freebsd-12-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h5162 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
5165 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
5188 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);

Completed in 914 milliseconds