| /NextBSD/contrib/ofed/libibverbs/include/infiniband/ |
| HD | opcode.h | 143 IBV_OPCODE(UD, SEND_ONLY), 144 IBV_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
|
| /NextBSD/sys/ofed/include/rdma/ |
| HD | ib_pack.h | 166 IB_OPCODE(UD, SEND_ONLY), 167 IB_OPCODE(UD, SEND_ONLY_WITH_IMMEDIATE)
|
| /NextBSD/contrib/ofed/management/doc/ |
| HD | diagtools-proposal.txt | 98 ibping uses UD transport to validate connectivity between IB nodes. 100 normal UD transport.
|
| HD | ibtracer.txt | 5 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/ |
| HD | Kconfig | 24 drops for multicast and UD mode traffic from this interface,
|
| /NextBSD/sys/gnu/dts/arm/ |
| HD | omap3-evm-common.dtsi | 87 &gpio1 3 GPIO_ACTIVE_HIGH>; /* gpio3, lcd UD */
|
| /NextBSD/sys/ofed/drivers/infiniband/hw/mthca/ |
| HD | mthca_qp.c | 284 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/ |
| HD | SemaDeclCXX.cpp | 7296 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 …]
|
| HD | SemaTemplateInstantiateDecl.cpp | 2368 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 …]
|
| HD | SemaLookup.cpp | 143 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()
|
| HD | TreeTransform.h | 8958 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/ |
| HD | CGDebugInfo.h | 324 void EmitUsingDirective(const UsingDirectiveDecl &UD); 330 void EmitUsingDecl(const UsingDecl &UD);
|
| HD | CGDebugInfo.cpp | 3234 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()
|
| HD | TargetInfo.cpp | 73 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/ |
| HD | Decl.cpp | 1535 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()
|
| HD | ASTContext.cpp | 7229 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/ |
| HD | ChangeLog | 120 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/ |
| HD | XRC_man_pages.patch | 186 +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/ |
| HD | aclocal.m4 | 967 sed -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[[ ]]/ /g' \ 968 -e 's/-[[UD]]'"$3"'\(=[[^ ]]*\)\?[$]//g'`
|
| /NextBSD/contrib/ofed/libmthca/ |
| HD | ChangeLog | 310 after we return. This fixes breakage with UD QPs introduced in
|
| /NextBSD/sys/boot/pc98/btx/btx/ |
| HD | btx.S | 327 push $0x6 # Int 0x6: #UD
|
| /NextBSD/sys/boot/i386/btx/btx/ |
| HD | btx.S | 325 push $0x6 # Int 0x6: #UD
|
| /NextBSD/contrib/llvm/lib/Target/ARM/ |
| HD | ARMInstrVFP.td | 658 def UD : ASuInp<0b11101, 0b11, 0b1100, 0b01, 0, 691 (!cast<Instruction>(NAME#"UD") DPR:$a),
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Sema/ |
| HD | Sema.h | 4074 bool CheckUsingShadowDecl(UsingDecl *UD, NamedDecl *Target, 4077 UsingShadowDecl *BuildUsingShadowDecl(Scope *S, UsingDecl *UD, 4100 bool CheckInheritingConstructorUsingDecl(UsingDecl *UD);
|
| /NextBSD/contrib/ncurses/ |
| HD | configure | 7361 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'`
|