Home
last modified time | relevance | path

Searched refs:UD (Results 1 – 25 of 38) sorted by relevance

12

/NextBSD/contrib/ofed/libibverbs/include/infiniband/
HDopcode.h143 IBV_OPCODE(UD, SEND_ONLY),
144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/NextBSD/sys/ofed/include/rdma/
HDib_pack.h166 IB_OPCODE(UD, SEND_ONLY),
167 IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
/NextBSD/contrib/ofed/management/doc/
HDdiagtools-proposal.txt98 ibping uses UD transport to validate connectivity between IB nodes.
100 normal UD transport.
HDibtracer.txt5 ibtracer is used to build a source route into a UD packet and validate the
74 Since vendor MADs are UD, there is a retransmission strategy (timeout/retry)
/NextBSD/sys/ofed/drivers/infiniband/ulp/ipoib/
HDKconfig24 drops for multicast and UD mode traffic from this interface,
/NextBSD/sys/gnu/dts/arm/
HDomap3-evm-common.dtsi87 &gpio1 3 GPIO_ACTIVE_HIGH>; /* gpio3, lcd UD */
/NextBSD/sys/ofed/drivers/infiniband/hw/mthca/
HDmthca_qp.c284 enum { RC, UC, UD, RD, RDEE, MLX, NUM_TRANS }; enumerator
291 case UD: return MTHCA_QP_ST_UD; in to_mthca_st()
593 if (qp->transport == MLX || qp->transport == UD) in __mthca_modify_qp()
934 case UD: in mthca_max_data_size()
1003 case UD: in mthca_alloc_wqe_buf()
1299 case IB_QPT_UD: qp->transport = UD; break; in mthca_alloc_qp()
1725 case UD: in mthca_tavor_post_send()
2066 case UD: in mthca_arbel_post_send()
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaDeclCXX.cpp7296 UsingDirectiveDecl* UD in ActOnStartNamespaceDef() local
7304 UD->setImplicit(); in ActOnStartNamespaceDef()
7305 Parent->addDecl(UD); in ActOnStartNamespaceDef()
7707 NamedDecl *UD = BuildUsingDeclaration(S, AS, UsingLoc, SS, in ActOnUsingDeclaration() local
7711 if (UD) in ActOnUsingDeclaration()
7712 PushOnScopeChains(UD, S, /*AddToContext*/ false); in ActOnUsingDeclaration()
7714 return UD; in ActOnUsingDeclaration()
7866 UsingDecl *UD, in BuildUsingShadowDecl() argument
7879 UD->getLocation(), UD, Target); in BuildUsingShadowDecl()
7880 UD->addShadowDecl(Shadow); in BuildUsingShadowDecl()
[all …]
HDSemaTemplateInstantiateDecl.cpp2368 NamedDecl *UD = in VisitUnresolvedUsingTypenameDecl() local
2373 if (UD) in VisitUnresolvedUsingTypenameDecl()
2374 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); in VisitUnresolvedUsingTypenameDecl()
2376 return UD; in VisitUnresolvedUsingTypenameDecl()
2392 NamedDecl *UD = in VisitUnresolvedUsingValueDecl() local
2397 if (UD) in VisitUnresolvedUsingValueDecl()
2398 SemaRef.Context.setInstantiatedFromUsingDecl(cast<UsingDecl>(UD), D); in VisitUnresolvedUsingValueDecl()
2400 return UD; in VisitUnresolvedUsingValueDecl()
4293 if (UsingDecl *UD = dyn_cast<UsingDecl>(Other)) { in isInstantiationOf() local
4294 return isInstantiationOf(UUD, UD, Ctx); in isInstantiationOf()
[all …]
HDSemaLookup.cpp143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in visit() argument
144 DeclContext *NS = UD->getNominatedNamespace(); in visit()
148 addUsingDirective(UD, EffectiveDC); in visit()
158 for (auto UD : DC->using_directives()) { in addUsingDirectives() local
159 DeclContext *NS = UD->getNominatedNamespace(); in addUsingDirectives()
161 addUsingDirective(UD, EffectiveDC); in addUsingDirectives()
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) { in addUsingDirective() argument
183 DeclContext *Common = UD->getNominatedNamespace(); in addUsingDirective()
188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common)); in addUsingDirective()
HDTreeTransform.h8958 UsingDecl *UD = cast<UsingDecl>(InstD); in TransformUnresolvedLookupExpr() local
8959 for (auto *I : UD->shadows()) in TransformUnresolvedLookupExpr()
9802 UsingDecl *UD = cast<UsingDecl>(InstD); in TransformUnresolvedMemberExpr() local
9803 for (auto *I : UD->shadows()) in TransformUnresolvedMemberExpr()
/NextBSD/contrib/llvm/tools/clang/lib/CodeGen/
HDCGDebugInfo.h324 void EmitUsingDirective(const UsingDirectiveDecl &UD);
330 void EmitUsingDecl(const UsingDecl &UD);
HDCGDebugInfo.cpp3234 void CGDebugInfo::EmitUsingDirective(const UsingDirectiveDecl &UD) { in EmitUsingDirective() argument
3238 getCurrentContextDescriptor(cast<Decl>(UD.getDeclContext())), in EmitUsingDirective()
3239 getOrCreateNameSpace(UD.getNominatedNamespace()), in EmitUsingDirective()
3240 getLineNumber(UD.getLocation())); in EmitUsingDirective()
3243 void CGDebugInfo::EmitUsingDecl(const UsingDecl &UD) { in EmitUsingDecl() argument
3246 assert(UD.shadow_size() && in EmitUsingDecl()
3250 const UsingShadowDecl &USD = **UD.shadow_begin(); in EmitUsingDecl()
HDTargetInfo.cpp73 const RecordDecl *UD = UT->getDecl(); in useFirstFieldIfTransparentUnion() local
74 if (UD->hasAttr<TransparentUnionAttr>()) { in useFirstFieldIfTransparentUnion()
75 assert(!UD->field_empty() && "sema created an empty transparent union"); in useFirstFieldIfTransparentUnion()
76 return UD->field_begin()->getType(); in useFirstFieldIfTransparentUnion()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDDecl.cpp1535 if (auto *UD = dyn_cast<UsingDecl>(this)) { in declarationReplaces() local
1537 return Context.getCanonicalNestedNameSpecifier(UD->getQualifier()) == in declarationReplaces()
1550 if (auto *UD = dyn_cast<UsingDirectiveDecl>(this)) in declarationReplaces() local
1551 return UD->getNominatedNamespace()->getOriginalNamespace() == in declarationReplaces()
1583 while (UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(ND)) in getUnderlyingDeclImpl() local
1584 ND = UD->getTargetDecl(); in getUnderlyingDeclImpl()
HDASTContext.cpp7229 RecordDecl *UD = UT->getDecl(); in mergeTransparentUnionType() local
7230 if (UD->hasAttr<TransparentUnionAttr>()) { in mergeTransparentUnionType()
7231 for (const auto *I : UD->fields()) { in mergeTransparentUnionType()
/NextBSD/contrib/ofed/libibverbs/
HDChangeLog120 ibv_init_ah_from_wc() and ibv_create_ah_from_wc() to simplify UD QP
125 a UD QP.
494 we know when we're posting a send on a UD QP, and add kernel
/NextBSD/contrib/ofed/libibverbs/fixes/
HDXRC_man_pages.patch186 +uint32_t qkey; /* Q_Key for the QP (valid only for UD QPs) */
451 +uint32_t qkey; /* Q_Key of the QP (valid only for UD QPs) */
/NextBSD/contrib/byacc/
HDaclocal.m4967 sed -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[[ ]]/ /g' \
968 -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'`
/NextBSD/contrib/ofed/libmthca/
HDChangeLog310 after we return. This fixes breakage with UD QPs introduced in
/NextBSD/sys/boot/pc98/btx/btx/
HDbtx.S327 push $0x6 # Int 0x6: #UD
/NextBSD/sys/boot/i386/btx/btx/
HDbtx.S325 push $0x6 # Int 0x6: #UD
/NextBSD/contrib/llvm/lib/Target/ARM/
HDARMInstrVFP.td658 def UD : ASuInp<0b11101, 0b11, 0b1100, 0b01, 0,
691 (!cast<Instruction>(NAME#"UD") DPR:$a),
/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDSema.h4074 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target,
4077 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD,
4100 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);
/NextBSD/contrib/ncurses/
HDconfigure7361 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \
7362 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'`
7365 sed -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?[ ]/ /g' \
7366 -e 's/-[UD]'"_POSIX_C_SOURCE"'\(=[^ ]*\)\?$//g'`

12